工具使用
jade07
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git 操作
查看本地链接的远程仓库: git remote -v为本地仓库新增远程仓库链接:git remote add origin repository 例: git remote add origin git@github.com:Alucardmini/break_point.git异常处理:第一次拉代码git pull git@github.com:Alucardmini/break_point....原创 2018-05-13 21:08:22 · 115 阅读 · 0 评论 -
ImportError: No module named _tkinter
import matplotlibmatplotlib.use('agg')import matplotlib.pyplot as plt原创 2018-12-07 14:59:16 · 197 阅读 · 0 评论 -
备注一下私有仓库可用了
1. 追踪分支git branch --set-upstream-to=origin/master master2.修改sshgit remote set-url origin git@github.com:Alucardmini/xxxx.git原创 2019-01-10 17:24:18 · 222 阅读 · 0 评论 -
neo4j 学习(一) load csv
csv文件内容如下:EA,Relation,EBa,friend,ba,father,cb,uncle,cd,daughter,bc,classmate,d将csv文件放到neo4j的home目录中的import下执行以下脚本, home目录在启动的时候可以看到load脚本LOAD CSV WITH HEADERS FROM "file:///test.csv"...原创 2019-01-19 11:50:29 · 1050 阅读 · 0 评论 -
step_by_step_deep_learning(-)全连接网络
import torchN, D_in, H, D_out = 64, 1000, 100, 10x = torch.randn(N, D_in)y = torch.randn(N, D_out)model = torch.nn.Sequential( torch.nn.Linear(D_in, H), torch.nn.ReLU(), torch.nn.L...原创 2019-05-21 20:20:12 · 207 阅读 · 0 评论 -
step_by_step_deep_learn(二) model
N, D_in, H, D_out = 64, 1000, 100, 10x = torch.randn(N, D_in)y = torch.randn(N, D_out)model = dense(D_in, H, D_out)learning_rate=1e-4optim = torch.optim.Adam(model.parameters(), learning_rate...原创 2019-05-21 20:29:14 · 200 阅读 · 0 评论
分享