5 Star 63 Fork 33

算法美食屋/eat_pytorch_in_20_days

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
push-to-github.ipynb 8.53 KB
一键复制 编辑 原始数据 按行查看 历史
算法美食屋 提交于 10个月前 . update torchkeras

推送主分支

!git config --global user.email "lyhue1991@163.com"
# 出现一些类似 warning: LF will be replaced by CRLF in <file-name>. 可启用如下设置。
!git config --global core.autocrlf false
# 配置打印历史commit的快捷命令
!git config --global alias.lg "log --oneline --graph --all"
!git init
!git add -A
#!git pull origin master 
#!git reflog 
!git reset e8be8c24
Unstaged changes after reset:
M	.gitignore
M	1-1,结构化数据建模流程范例.ipynb
M	1-2,图片数据建模流程范例.ipynb
M	1-3,文本数据建模流程范例.ipynb
M	1-4,时间序列数据建模流程范例.ipynb
M	2-1,张量数据结构.ipynb
M	2-2,自动微分机制.ipynb
M	2-3,动态计算图.ipynb
M	3-1,低阶API示范.ipynb
M	3-2,中阶API示范.ipynb
M	3-3,高阶API示范.ipynb
M	4-1,张量的结构操作.ipynb
M	4-2,张量的数学运算.ipynb
M	4-3,nn.functional和nn.Module.ipynb
M	5-1,Dataset和DataLoader.ipynb
M	5-2,模型层.ipynb
M	5-3,损失函数.ipynb
M	5-4,TensorBoard可视化.ipynb
M	6-1,构建模型的3种方法.ipynb
M	6-2,训练模型的3种方法.ipynb
M	6-3,使用GPU训练模型.ipynb
M	7-1,推荐算法业务.ipynb
M	7-2,广告算法业务.ipynb
M	7-3,FM模型.ipynb
M	7-4,DeepFM模型.ipynb
M	7-5,FiBiNET模型.ipynb
M	7-6,DeepCross模型.ipynb
M	7-7,DIN网络.ipynb
M	7-8,DIEN网络.ipynb
M	A-1,Kaggle免费GPU使用攻略.ipynb
M	A-2,Streamlit构建机器学习应用.ipynb
M	A-3,使用MacM1芯片加速pytorch.ipynb
M	README.md
M	push-to-github.ipynb
M	一、Pytorch的建模流程.ipynb
M	七、Pytorch与广告推荐.ipynb
M	三、Pytorch的层次结构.ipynb
M	二、Pytorch的核心概念.ipynb
M	五、Pytorch的中阶API.ipynb
M	六、Pytorch的高阶API.ipynb
M	四、Pytorch的低阶API.ipynb
#!rm -rf *.html
!git commit -m "update torchkeras" 
[master dc53aa0c] update torchkeras
 47 files changed, 109199 insertions(+), 29201 deletions(-)
 create mode 100644 "5-2,\346\250\241\345\236\213\345\261\202.md"
 create mode 100644 "7-6,DeepCross\346\250\241\345\236\213.md"
 create mode 100644 "A-1,Kaggle\345\205\215\350\264\271GPU\344\275\277\347\224\250\346\224\273\347\225\245.md"
 create mode 100644 "\344\270\200\343\200\201Pytorch\347\232\204\345\273\272\346\250\241\346\265\201\347\250\213.md"
 create mode 100644 "\344\270\203\343\200\201Pytorch\344\270\216\345\271\277\345\221\212\346\216\250\350\215\220.md"
 create mode 100644 "\344\272\224\343\200\201Pytorch\347\232\204\344\270\255\351\230\266API.md"
!git log 
!git remote add origin git@github.com:lyhue1991/eat_pytorch_in_20_days.git
!git remote remove origin 
!git push origin master 
Enumerating objects: 7, done.
Counting objects: 100% (7/7), done.
Delta compression using up to 8 threads
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 1.18 KiB | 1.18 MiB/s, done.
Total 4 (delta 3), reused 0 (delta 0), pack-reused 0
remote: Resolving deltas: 100% (3/3), completed with 3 local objects.
To github.com:lyhue1991/eat_pytorch_in_20_days.git
   fd9242b5..e8be8c24  master -> master
!ssh -T git@github.com:lyhue1991/eat_pytorch_in_20_days.git
!git remote rm gitee 
!git remote add gitee https://gitee.com/Python_Ai_Road/eat_pytorch_in_20_days
!git push   gitee master 
Enumerating objects: 7, done.
Counting objects: 100% (7/7), done.
Delta compression using up to 8 threads
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 1.18 KiB | 1.18 MiB/s, done.
Total 4 (delta 3), reused 0 (delta 0), pack-reused 0
remote: Powered by GITEE.COM [GNK-6.4]
To https://gitee.com/Python_Ai_Road/eat_pytorch_in_20_days
   fd9242b5..e8be8c24  master -> master
%%writefile .gitignore
.DS_store
.ipynb_checkpoints
.ipynb_checkpoints/* 
__pycache__/*
eat_pytorch_datasets
*.pt
data/*.pt 
data/*.zip
data/*.pkl
data/tensorboard
data/mnist 
mnist
*.png

Overwriting .gitignore
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Python_Ai_Road/eat_pytorch_in_20_days.git
git@gitee.com:Python_Ai_Road/eat_pytorch_in_20_days.git
Python_Ai_Road
eat_pytorch_in_20_days
eat_pytorch_in_20_days
master

搜索帮助