kurianbenoy commited on
Commit
390fc37
1 Parent(s): 502cdb1

add gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +157 -0
  2. app.ipynb +5 -3
.gitignore ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ _docs/
2
+ _proc/
3
+
4
+
5
+ *.bak
6
+ .gitattributes
7
+ .last_checked
8
+ .gitconfig
9
+ *.bak
10
+ *.log
11
+ *~
12
+ ~*
13
+ _tmp*
14
+ tmp*
15
+ tags
16
+ *.pkg
17
+
18
+ # Byte-compiled / optimized / DLL files
19
+ __pycache__/
20
+ *.py[cod]
21
+ *$py.class
22
+
23
+ # C extensions
24
+ *.so
25
+
26
+ # Distribution / packaging
27
+ .Python
28
+ env/
29
+ build/
30
+ develop-eggs/
31
+ dist/
32
+ downloads/
33
+ eggs/
34
+ .eggs/
35
+ lib/
36
+ lib64/
37
+ parts/
38
+ sdist/
39
+ var/
40
+ wheels/
41
+ *.egg-info/
42
+ .installed.cfg
43
+ *.egg
44
+
45
+ # PyInstaller
46
+ # Usually these files are written by a python script from a template
47
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
48
+ *.manifest
49
+ *.spec
50
+
51
+ # Installer logs
52
+ pip-log.txt
53
+ pip-delete-this-directory.txt
54
+
55
+ # Unit test / coverage reports
56
+ htmlcov/
57
+ .tox/
58
+ .coverage
59
+ .coverage.*
60
+ .cache
61
+ nosetests.xml
62
+ coverage.xml
63
+ *.cover
64
+ .hypothesis/
65
+
66
+ # Translations
67
+ *.mo
68
+ *.pot
69
+
70
+ # Django stuff:
71
+ *.log
72
+ local_settings.py
73
+
74
+ # Flask stuff:
75
+ instance/
76
+ .webassets-cache
77
+
78
+ # Scrapy stuff:
79
+ .scrapy
80
+
81
+ # Sphinx documentation
82
+ docs/_build/
83
+
84
+ # PyBuilder
85
+ target/
86
+
87
+ # Jupyter Notebook
88
+ .ipynb_checkpoints
89
+
90
+ # pyenv
91
+ .python-version
92
+
93
+ # celery beat schedule file
94
+ celerybeat-schedule
95
+
96
+ # SageMath parsed files
97
+ *.sage.py
98
+
99
+ # dotenv
100
+ .env
101
+
102
+ # virtualenv
103
+ .venv
104
+ venv/
105
+ ENV/
106
+
107
+ # Spyder project settings
108
+ .spyderproject
109
+ .spyproject
110
+
111
+ # Rope project settings
112
+ .ropeproject
113
+
114
+ # mkdocs documentation
115
+ /site
116
+
117
+ # mypy
118
+ .mypy_cache/
119
+
120
+ .vscode
121
+ *.swp
122
+
123
+ # osx generated files
124
+ .DS_Store
125
+ .DS_Store?
126
+ .Trashes
127
+ ehthumbs.db
128
+ Thumbs.db
129
+ .idea
130
+
131
+ # pytest
132
+ .pytest_cache
133
+
134
+ # tools/trust-doc-nbs
135
+ docs_src/.last_checked
136
+
137
+ # symlinks to fastai
138
+ docs_src/fastai
139
+ tools/fastai
140
+
141
+ # link checker
142
+ checklink/cookies.txt
143
+
144
+ # .gitconfig is now autogenerated
145
+ .gitconfig
146
+
147
+ # Quarto installer
148
+ .deb
149
+ .pkg
150
+
151
+ # Quarto
152
+ .quarto
153
+
154
+ # Generated dataset files
155
+
156
+ *.parquet
157
+
app.ipynb CHANGED
@@ -305,7 +305,7 @@
305
  },
306
  {
307
  "cell_type": "code",
308
- "execution_count": 21,
309
  "id": "b1e34fa5-8340-4329-a348-b641ca4db341",
310
  "metadata": {},
311
  "outputs": [
@@ -313,6 +313,8 @@
313
  "name": "stdout",
314
  "output_type": "stream",
315
  "text": [
 
 
316
  "Running on local URL: http://0.0.0.0:6010\n",
317
  "Running on public URL: https://19b32861466405ac95.gradio.live\n",
318
  "\n",
@@ -335,7 +337,7 @@
335
  "data": {
336
  "text/plain": []
337
  },
338
- "execution_count": 21,
339
  "metadata": {},
340
  "output_type": "execute_result"
341
  }
@@ -384,7 +386,7 @@
384
  },
385
  {
386
  "cell_type": "code",
387
- "execution_count": 23,
388
  "id": "fba83810-1f0f-4777-b831-aabb4cfead39",
389
  "metadata": {},
390
  "outputs": [],
305
  },
306
  {
307
  "cell_type": "code",
308
+ "execution_count": 24,
309
  "id": "b1e34fa5-8340-4329-a348-b641ca4db341",
310
  "metadata": {},
311
  "outputs": [
313
  "name": "stdout",
314
  "output_type": "stream",
315
  "text": [
316
+ "Rerunning server... use `close()` to stop if you need to change `launch()` parameters.\n",
317
+ "----\n",
318
  "Running on local URL: http://0.0.0.0:6010\n",
319
  "Running on public URL: https://19b32861466405ac95.gradio.live\n",
320
  "\n",
337
  "data": {
338
  "text/plain": []
339
  },
340
+ "execution_count": 24,
341
  "metadata": {},
342
  "output_type": "execute_result"
343
  }
386
  },
387
  {
388
  "cell_type": "code",
389
+ "execution_count": 25,
390
  "id": "fba83810-1f0f-4777-b831-aabb4cfead39",
391
  "metadata": {},
392
  "outputs": [],