**查找连接到端口设备的MAC地址,可以使用ping+arp-a命令:可以ping机器名或者IP地址再使用arp-a显示MAC表查找到IP地址对应的MAC地址登录到交换机,使用dismac-add命令显示MAC对应的连接端口:显示客户端连接的是GE0/0/19使用user-bind命令邦定ip与MAC:进入interfaceGigabitEthernet0/0/19界面,设置ip源检查:**例:C
分类:
系统相关 时间:
2020-06-13 10:37:19
阅读次数:
120
SpringBoot2.x 整合Redis和使用Redis缓存 导入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-redis --> <dependency> ...
分类:
编程语言 时间:
2020-06-13 10:31:13
阅读次数:
91
https://www.javaguides.net/2018/12/how-rabbitmq-works-and-rabbitmq-core-concepts.html n this quick article, we will learn what is RabbitMQ, how it wor ...
分类:
其他好文 时间:
2020-06-12 14:47:24
阅读次数:
74
How to delete a directory recursively with all its subdirectories and files in Java In this short article, you’ll learn how to delete a directory recu ...
分类:
其他好文 时间:
2020-06-12 14:30:22
阅读次数:
59
一、python科学计算环境 Python库: pandas、numpy、scipy、Scikit-Image、Scikit-Learn、matplotlib 功能介绍 二、SKlearn算法库的顶层设计 SKlearn监督学习的各个模块 SKlearn无监督学习模块 SKlearn数据变换模块 S ...
分类:
编程语言 时间:
2020-06-11 21:42:17
阅读次数:
97
The Softmax Function In the next video, we'll learn about the softmax function, which is the equivalent of the sigmoid activation function, but when t ...
分类:
其他好文 时间:
2020-06-11 09:15:58
阅读次数:
62
1.手写数字数据集 from sklearn.datasets import load_digits digits = load_digits() digits = load_digits() x_data = digits.data.astype(np.float32) y_data = digi ...
分类:
其他好文 时间:
2020-06-10 17:15:36
阅读次数:
42
1.Book https://blog.floydhub.com/best-deep-learning-books-updated-for-2019/ grokking-deep-reinforcement-learning https://livebook.manning.com/book/gro ...
分类:
其他好文 时间:
2020-06-09 12:55:08
阅读次数:
74
来源:https://www.icourse163.org/learn/LIXIN-1206515803#/learn/content?type=detail&id=1230887276&sm=1 统计数据的分组 作用:一是划分现象类型;二是说明现象的内部结构。 分组标志选择:按品质标志分组和按数量 ...
分类:
其他好文 时间:
2020-06-09 12:38:57
阅读次数:
84
1.逻辑回归是怎么防止过拟合的?为什么正则化可以防止过拟合?】 · 防止过拟合的方法: (1)增加样本量(适用任何模型)。 (2)如果数据稀疏,使用L1正则,其他情况,使用L2。 L1正则,通过增大正则项导致更多参数为0,参数系数化降低模型复杂度,从而抵抗过拟合。 L2正则,通过使得参数都趋于0,变 ...
分类:
其他好文 时间:
2020-06-09 09:55:14
阅读次数:
59