
小技巧
JChowCUG
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Ubuntu set up configuration ss
Ubuntu set up configuration ssdownload ss-qt5downloadclick properties > permissions > allow excuting file as programsetupopen ss > connection > add > manuallyinput server address ...原创 2019-07-14 12:55:09 · 288 阅读 · 0 评论 -
Commonly used commands under the Ubuntu system
copy filecp flie directory原创 2019-07-14 18:37:21 · 203 阅读 · 0 评论 -
用简单的python代码帮助理解神经网络反向传播
import numpy as np# sigmoid函数 及其 求导def sigmoid(x, deriv=False): if(deriv == True): return x*(1-x) return 1/(1+np.exp(-x))# 初始化x, y ,w0, w1x = np.array([[0, 0, 1], ...原创 2019-07-15 15:46:54 · 404 阅读 · 0 评论 -
pytharm error : No module named 'distutils.core'
input the following code in your terminalsudo apt-get install python3-distutilssudo apt install python3-pip原创 2019-07-18 10:27:30 · 402 阅读 · 1 评论 -
手动给chrome安装SwitchyOmega
1、下载SwitchyOmega2、把crx文件重命名为zip3、解压zip4、chrome搜索框搜索chrome://extensions/5、打开Developer mode6、Load unpacked 选刚才解压的文件夹打完收工原创 2019-07-19 09:06:31 · 1408 阅读 · 1 评论