Skip to content

Commit 4ec6c83

Browse files
committed
cleaned up
0 parents  commit 4ec6c83

File tree

129 files changed

+24433
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+24433
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
site/
3+
.ipynb_checkpoints/
4+
.DS_Store
5+
/bin/
6+
/eclipse-generated/
7+
.classpath
8+
.project
9+
__pycache__/
10+
.cache-main
11+
.cache-tests
12+
.idea
13+
.classpath
14+
.settings
15+
.project
16+
jmeter.log
17+
nohup*.out
18+
__pycache__
19+
.DS_Store
20+
.cache-tests
21+
*.iml

00_Explore_Environment.ipynb

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": null,
6+
"metadata": {},
7+
"outputs": [],
8+
"source": [
9+
"import tensorflow as tf"
10+
]
11+
},
12+
{
13+
"cell_type": "code",
14+
"execution_count": null,
15+
"metadata": {},
16+
"outputs": [],
17+
"source": [
18+
"print('TensorFlow Version %s' % tf.__version__)"
19+
]
20+
},
21+
{
22+
"cell_type": "code",
23+
"execution_count": null,
24+
"metadata": {},
25+
"outputs": [],
26+
"source": [
27+
"import sys\n",
28+
"\n",
29+
"print('Python Version %s' % sys.version)"
30+
]
31+
},
32+
{
33+
"cell_type": "code",
34+
"execution_count": 2,
35+
"metadata": {},
36+
"outputs": [
37+
{
38+
"data": {
39+
"text/html": [
40+
"\n",
41+
"<iframe src=\"https://pipeline.ai\" width=\"800px\" height=\"600px\"/>"
42+
],
43+
"text/plain": [
44+
"<IPython.core.display.HTML object>"
45+
]
46+
},
47+
"metadata": {},
48+
"output_type": "display_data"
49+
}
50+
],
51+
"source": [
52+
"%%html\n",
53+
"\n",
54+
"<iframe src=\"https://pipeline.ai\" width=\"800px\" height=\"600px\"/>"
55+
]
56+
},
57+
{
58+
"cell_type": "code",
59+
"execution_count": null,
60+
"metadata": {},
61+
"outputs": [],
62+
"source": []
63+
}
64+
],
65+
"metadata": {
66+
"kernelspec": {
67+
"display_name": "Python 3",
68+
"language": "python",
69+
"name": "python3"
70+
},
71+
"language_info": {
72+
"codemirror_mode": {
73+
"name": "ipython",
74+
"version": 3
75+
},
76+
"file_extension": ".py",
77+
"mimetype": "text/x-python",
78+
"name": "python",
79+
"nbconvert_exporter": "python",
80+
"pygments_lexer": "ipython3",
81+
"version": "3.6.6"
82+
}
83+
},
84+
"nbformat": 4,
85+
"nbformat_minor": 2
86+
}

0 commit comments

Comments
 (0)