迭代(遍历)方法: forEach()、map()、 filter()、 some()、 every() ; map()和forEach()相似,some()和every()相似 1.数组方法forEach遍历数组 array. forEach ( function (currentValue, i ...
分类:
其他好文 时间:
2020-10-14 20:10:09
阅读次数:
23
Router#shrunBuildingconfiguration...Currentconfiguration:2420bytes!!Lastconfigurationchangeat09:47:41UTCMonOct122020byvxiadminversion15.1servicetimestampsdebugdatetimemsecservicetimestampslogdatetimem
分类:
系统相关 时间:
2020-10-14 19:57:05
阅读次数:
34
误差来源 bias variance 比喻:打靶 真实的Function$\widehat$ 通过训练集得到的最优解$f^*$ $f^*\(是\)\widehat$的一个估计 $\widehat$就是靶心,我们打靶的目标 $f^*$是打靶的结果,与靶心的距离即为误差 假设要估计变量$x$的均值$\m ...
分类:
其他好文 时间:
2020-10-13 17:51:44
阅读次数:
42
分析训练完成的机器学习模型的性能是任何机器学习工作流程中必不可少的步骤。 在PyCaret中分析模型性能就像编写plot_model一样简单。 该函数将受训的模型对象和图的类型作为plot_model函数中的字符串。 分类: Name Plot Area Under the Curve ‘auc’ ...
分类:
其他好文 时间:
2020-10-13 17:03:38
阅读次数:
22
open函数理解 open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) mode模式 合法mode:r、rb、r+、rb+、w、wb、w+、wb+ ...
分类:
其他好文 时间:
2020-10-10 17:51:26
阅读次数:
21
问题 线上nexus因为误操作 blob存储,造成nexus 出现Invalid state: DELETED; allowed: [STARTED],然后就是现有的nexus 也不能使用了(nexus服务异常) 以下是参考的解决方法 解决方法 手工处理相关的blob存储,删除,同时重启nexus服 ...
分类:
其他好文 时间:
2020-10-10 17:49:26
阅读次数:
31
vmware16.0 centos7.8 1. 使用vmware安装 centos环境 cpu4个 内存4G 网络nat模式 2.配置网络 vim /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE="Ethernet" PROXY_METHOD="non ...
分类:
其他好文 时间:
2020-10-10 17:16:23
阅读次数:
31
基本的数值类型 一.数值类型 1.整数类型 byte: 1字节 short: 2字节 int: 4字节 long: 8字节 int num1=10; //最常用byte num2=20;short num3=30;long num4=30L; //long类型要在数字后面加个L 2.浮点类型 flo ...
分类:
其他好文 时间:
2020-10-09 20:57:46
阅读次数:
16
Application Exploits, Part III CROSS-SITE SCRIPTING(XSS) Injection attack in which an attacker sends malicious code(client-side script) to a web appli ...
分类:
Web程序 时间:
2020-10-09 20:20:18
阅读次数:
34
实验方法 //输出运行时间 #include <bits/stdc++.h> using namespace std; const int MODE = 10000; int main(){ freopen("a1.txt", "w", stdout); int k = 100; while(k-- ...
分类:
其他好文 时间:
2020-10-09 20:18:04
阅读次数:
24