Spaces:
Runtime error
Runtime error
added gitignore and removed .ipynb_checkpoints
Browse files
.gitignore
ADDED
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# CMake
|
2 |
+
cmake-build-debug/
|
3 |
+
|
4 |
+
## File-based project format:
|
5 |
+
*.iws
|
6 |
+
|
7 |
+
## Plugin-specific files:
|
8 |
+
|
9 |
+
# IntelliJ
|
10 |
+
.idea/
|
11 |
+
*.iml
|
12 |
+
out/
|
13 |
+
|
14 |
+
### macOS
|
15 |
+
*.DS_Store
|
16 |
+
.AppleDouble
|
17 |
+
.LSOverride
|
18 |
+
.Trashes
|
19 |
+
|
20 |
+
# mpeltonen/sbt-idea plugin
|
21 |
+
.idea_modules/
|
22 |
+
|
23 |
+
# JIRA plugin
|
24 |
+
atlassian-ide-plugin.xml
|
25 |
+
|
26 |
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
27 |
+
com_crashlytics_export_strings.xml
|
28 |
+
crashlytics.properties
|
29 |
+
crashlytics-build.properties
|
30 |
+
fabric.properties
|
31 |
+
### Python template
|
32 |
+
# Byte-compiled / optimized / DLL files
|
33 |
+
__pycache__/
|
34 |
+
*.py[cod]
|
35 |
+
*$py.class
|
36 |
+
|
37 |
+
# C extensions
|
38 |
+
*.so
|
39 |
+
|
40 |
+
# Distribution / packaging
|
41 |
+
.Python
|
42 |
+
build/
|
43 |
+
develop-eggs/
|
44 |
+
dist/
|
45 |
+
downloads/
|
46 |
+
eggs/
|
47 |
+
.eggs/
|
48 |
+
lib/
|
49 |
+
lib64/
|
50 |
+
parts/
|
51 |
+
sdist/
|
52 |
+
var/
|
53 |
+
wheels/
|
54 |
+
pip-wheel-metadata/
|
55 |
+
*.egg-info/
|
56 |
+
.installed.cfg
|
57 |
+
*.egg
|
58 |
+
MANIFEST
|
59 |
+
|
60 |
+
# PyInstaller
|
61 |
+
# Usually these files are written by a python script from a template
|
62 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
63 |
+
*.manifest
|
64 |
+
*.spec
|
65 |
+
|
66 |
+
# Installer logs
|
67 |
+
pip-log.txt
|
68 |
+
pip-delete-this-directory.txt
|
69 |
+
|
70 |
+
|
71 |
+
# Unit test / coverage reports
|
72 |
+
htmlcov/
|
73 |
+
.tox/
|
74 |
+
.coverage
|
75 |
+
.coverage.*
|
76 |
+
.cache
|
77 |
+
nosetests.xml
|
78 |
+
test-output.xml
|
79 |
+
coverage.xml
|
80 |
+
*.cover
|
81 |
+
.hypothesis/
|
82 |
+
|
83 |
+
# Translations
|
84 |
+
*.mo
|
85 |
+
*.pot
|
86 |
+
|
87 |
+
# Django stuff:
|
88 |
+
*.log
|
89 |
+
.static_storage/
|
90 |
+
.media/
|
91 |
+
local_settings.py
|
92 |
+
|
93 |
+
# Flask stuff:
|
94 |
+
instance/
|
95 |
+
.webassets-cache
|
96 |
+
|
97 |
+
# Scrapy stuff:
|
98 |
+
.scrapy
|
99 |
+
|
100 |
+
# PyBuilder
|
101 |
+
target/
|
102 |
+
|
103 |
+
# Jupyter Notebook
|
104 |
+
.ipynb_checkpoints
|
105 |
+
|
106 |
+
# pyenv
|
107 |
+
.python-version
|
108 |
+
|
109 |
+
# celery beat schedule file
|
110 |
+
celerybeat-schedule
|
111 |
+
|
112 |
+
# SageMath parsed files
|
113 |
+
*.sage.py
|
114 |
+
|
115 |
+
# Environments
|
116 |
+
.env
|
117 |
+
.envrc
|
118 |
+
.venv
|
119 |
+
env/
|
120 |
+
venv/
|
121 |
+
ENV/
|
122 |
+
env.bak/
|
123 |
+
venv.bak/
|
124 |
+
.cenv
|
125 |
+
|
126 |
+
# Spyder project settings
|
127 |
+
.spyderproject
|
128 |
+
.spyproject
|
129 |
+
|
130 |
+
# Rope project settings
|
131 |
+
.ropeproject
|
132 |
+
|
133 |
+
# mkdocs documentation
|
134 |
+
/site
|
135 |
+
/kedro/framework/html
|
136 |
+
|
137 |
+
# mypy
|
138 |
+
.mypy_cache/
|
139 |
+
|
140 |
+
# Visual Studio Code
|
141 |
+
.vscode/
|
142 |
+
# end to end tests assets
|
143 |
+
kedro.db
|
144 |
+
|
145 |
+
# Vim
|
146 |
+
*~
|
147 |
+
.*.swo
|
148 |
+
.*.swp
|
149 |
+
|
150 |
+
# Prettier
|
151 |
+
.prettierignore
|
152 |
+
|
153 |
+
.pytest_cache/
|
154 |
+
kedro/html
|
155 |
+
docs/tmp-build-artifacts
|
156 |
+
docs/build
|
157 |
+
docs/temp
|
158 |
+
docs/node_modules
|
159 |
+
docs/source/04_user_guide/source/.ipynb
|
160 |
+
tests/template/fake_project/
|
161 |
+
|
162 |
+
default.profraw
|
163 |
+
package-lock.json
|
164 |
+
|
165 |
+
# Kedro-Datasets plugin
|
166 |
+
kedro/datasets/*
|
assignment-1/assignment_1/.ipynb_checkpoints/AI_Assignment_1-checkpoint.ipynb
DELETED
The diff for this file is too large to render.
See raw diff
|
|
assignment-1/assignment_1/AI_Assignment_1.ipynb
CHANGED
The diff for this file is too large to render.
See raw diff
|
|