Skip to content

Commit bb902d0

Browse files
author
Captain
committed
update gitignore file
1 parent 4e01b11 commit bb902d0

File tree

2 files changed

+81
-2
lines changed

2 files changed

+81
-2
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ data/
33
.idea/
44
result/
55
venv/
6-
.ipynb_checkpoints/
7-
*.ipynb
6+
.ipynb_checkpoints/

Untitled.ipynb

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"metadata": {
7+
"collapsed": true
8+
},
9+
"outputs": [],
10+
"source": [
11+
"import torch\n",
12+
"import torch.nn as nn\n",
13+
"from torch.autograd import Variable"
14+
]
15+
},
16+
{
17+
"cell_type": "code",
18+
"execution_count": 7,
19+
"metadata": {},
20+
"outputs": [
21+
{
22+
"data": {
23+
"text/plain": [
24+
"Variable containing:\n",
25+
"(0 ,.,.) = \n",
26+
" 1.1822 0.5897 -0.8053\n",
27+
" 0.8666 0.3600 0.7528\n",
28+
" -1.8984 0.0093 1.5523\n",
29+
" -2.0589 -0.1060 0.1849\n",
30+
"\n",
31+
"(1 ,.,.) = \n",
32+
" -1.8984 0.0093 1.5523\n",
33+
" -0.5021 0.8142 0.4541\n",
34+
" 0.8666 0.3600 0.7528\n",
35+
" 0.3182 -0.0502 2.1936\n",
36+
"[torch.FloatTensor of size 2x4x3]"
37+
]
38+
},
39+
"execution_count": 7,
40+
"metadata": {},
41+
"output_type": "execute_result"
42+
}
43+
],
44+
"source": [
45+
"class CNN(nn.modules):\n",
46+
" def "
47+
]
48+
},
49+
{
50+
"cell_type": "code",
51+
"execution_count": null,
52+
"metadata": {
53+
"collapsed": true
54+
},
55+
"outputs": [],
56+
"source": []
57+
}
58+
],
59+
"metadata": {
60+
"kernelspec": {
61+
"display_name": "Python 3",
62+
"language": "python",
63+
"name": "python3"
64+
},
65+
"language_info": {
66+
"codemirror_mode": {
67+
"name": "ipython",
68+
"version": 3
69+
},
70+
"file_extension": ".py",
71+
"mimetype": "text/x-python",
72+
"name": "python",
73+
"nbconvert_exporter": "python",
74+
"pygments_lexer": "ipython3",
75+
"version": "3.6.1"
76+
}
77+
},
78+
"nbformat": 4,
79+
"nbformat_minor": 2
80+
}

0 commit comments

Comments
 (0)