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
实验方法 //输出运行时间 #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
Detectron2 官方文档里的 Getting Started 提供了两种使用 detectron2 的样例。其一是读者大概率已经阅读过的 Colab Notebook ——骑马王子和气球检测,其二是使用命令行执行的 python 文件,包括演示文件 demo.py 及自行用于部署的 train ...
分类:
其他好文 时间:
2020-10-08 19:51:18
阅读次数:
65
1 用户发送请求 2 DispatcherServlet接收请求并调用处理器映射器HandlerMapping 3 处理器映射器根据请求找到具体的处理器并将处理器对象返回给DispatcherServlet 4 DispatcherServlet根据处理器调用处理器适配器 5 处理器适配器执行处理器 ...
分类:
编程语言 时间:
2020-10-08 19:45:26
阅读次数:
33