Skip to content

Commit 4ce600c

Browse files
committed
Input file
1 parent c9c62d0 commit 4ce600c

File tree

6 files changed

+134544
-0
lines changed

6 files changed

+134544
-0
lines changed

class_16/.ipynb_checkpoints/Transfer_Cifar_10-checkpoint.ipynb

Lines changed: 432 additions & 0 deletions
Large diffs are not rendered by default.

class_16/Transfer_Cifar_10.ipynb

Lines changed: 428 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"metadata": {
7+
"collapsed": true
8+
},
9+
"outputs": [],
10+
"source": [
11+
"import numpy as np"
12+
]
13+
},
14+
{
15+
"cell_type": "code",
16+
"execution_count": 2,
17+
"metadata": {
18+
"collapsed": true
19+
},
20+
"outputs": [],
21+
"source": [
22+
"f = open('./input.txt', 'r')\n",
23+
"d = str(f.read())\n",
24+
"f.close()"
25+
]
26+
},
27+
{
28+
"cell_type": "code",
29+
"execution_count": 7,
30+
"metadata": {
31+
"collapsed": false
32+
},
33+
"outputs": [
34+
{
35+
"name": "stdout",
36+
"output_type": "stream",
37+
"text": [
38+
" The Sign of the Four\n",
39+
"\n",
40+
" The Adventures of Sherlock Holmes\n",
41+
" A Scandal in Bohemia\n",
42+
" The Red-Headed League\n",
43+
" A Case of Identity\n",
44+
" The Boscombe Valley Mystery\n",
45+
" The Five Orange Pips\n",
46+
" The Man wit\n"
47+
]
48+
}
49+
],
50+
"source": [
51+
"print d[200:500]"
52+
]
53+
}
54+
],
55+
"metadata": {
56+
"kernelspec": {
57+
"display_name": "Python 2",
58+
"language": "python",
59+
"name": "python2"
60+
},
61+
"language_info": {
62+
"codemirror_mode": {
63+
"name": "ipython",
64+
"version": 2
65+
},
66+
"file_extension": ".py",
67+
"mimetype": "text/x-python",
68+
"name": "python",
69+
"nbconvert_exporter": "python",
70+
"pygments_lexer": "ipython2",
71+
"version": "2.7.12"
72+
}
73+
},
74+
"nbformat": 4,
75+
"nbformat_minor": 2
76+
}

class_17/MackovChain_LM.ipynb

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 1,
6+
"metadata": {
7+
"collapsed": true
8+
},
9+
"outputs": [],
10+
"source": [
11+
"import numpy as np"
12+
]
13+
},
14+
{
15+
"cell_type": "code",
16+
"execution_count": 2,
17+
"metadata": {
18+
"collapsed": true
19+
},
20+
"outputs": [],
21+
"source": [
22+
"f = open('./input.txt', 'r')\n",
23+
"d = str(f.read())\n",
24+
"f.close()"
25+
]
26+
},
27+
{
28+
"cell_type": "code",
29+
"execution_count": 7,
30+
"metadata": {
31+
"collapsed": false
32+
},
33+
"outputs": [
34+
{
35+
"name": "stdout",
36+
"output_type": "stream",
37+
"text": [
38+
" The Sign of the Four\n",
39+
"\n",
40+
" The Adventures of Sherlock Holmes\n",
41+
" A Scandal in Bohemia\n",
42+
" The Red-Headed League\n",
43+
" A Case of Identity\n",
44+
" The Boscombe Valley Mystery\n",
45+
" The Five Orange Pips\n",
46+
" The Man wit\n"
47+
]
48+
}
49+
],
50+
"source": [
51+
"print d[200:500]"
52+
]
53+
}
54+
],
55+
"metadata": {
56+
"kernelspec": {
57+
"display_name": "Python 2",
58+
"language": "python",
59+
"name": "python2"
60+
},
61+
"language_info": {
62+
"codemirror_mode": {
63+
"name": "ipython",
64+
"version": 2
65+
},
66+
"file_extension": ".py",
67+
"mimetype": "text/x-python",
68+
"name": "python",
69+
"nbconvert_exporter": "python",
70+
"pygments_lexer": "ipython2",
71+
"version": "2.7.12"
72+
}
73+
},
74+
"nbformat": 4,
75+
"nbformat_minor": 2
76+
}

0 commit comments

Comments
 (0)