Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#378 Feature/sg 281 add kd notebook

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-281-add_kd_notebook
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
  1. # Created by https://www.toptal.com/developers/gitignore/api/linux,macos,python
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,python
  3. ### Linux ###
  4. *~
  5. # temporary files which can be created if a process still has a handle open of a deleted file
  6. .fuse_hidden*
  7. # KDE directory preferences
  8. .directory
  9. # Linux trash folder which might appear on any partition or disk
  10. .Trash-*
  11. # .nfs files are created when an open file is removed but is still being accessed
  12. .nfs*
  13. ### macOS ###
  14. # General
  15. .DS_Store
  16. .AppleDouble
  17. .LSOverride
  18. # Icon must end with two \r
  19. Icon
  20. # Thumbnails
  21. ._*
  22. # Files that might appear in the root of a volume
  23. .DocumentRevisions-V100
  24. .fseventsd
  25. .Spotlight-V100
  26. .TemporaryItems
  27. .Trashes
  28. .VolumeIcon.icns
  29. .com.apple.timemachine.donotpresent
  30. # Directories potentially created on remote AFP share
  31. .AppleDB
  32. .AppleDesktop
  33. Network Trash Folder
  34. Temporary Items
  35. .apdisk
  36. ### Python ###
  37. # Byte-compiled / optimized / DLL files
  38. __pycache__/
  39. *.py[cod]
  40. *$py.class
  41. # C extensions
  42. *.so
  43. # Distribution / packaging
  44. .Python
  45. */build/
  46. develop-eggs/
  47. dist/
  48. downloads/
  49. eggs/
  50. .eggs/
  51. lib/
  52. lib64/
  53. parts/
  54. sdist/
  55. var/
  56. wheels/
  57. share/python-wheels/
  58. *.egg-info/
  59. .installed.cfg
  60. *.egg
  61. MANIFEST
  62. # PyInstaller
  63. # Usually these files are written by a python script from a template
  64. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  65. *.manifest
  66. *.spec
  67. # Installer logs
  68. pip-log.txt
  69. pip-delete-this-directory.txt
  70. # Unit test / coverage reports
  71. htmlcov/
  72. .tox/
  73. .nox/
  74. .coverage
  75. .coverage.*
  76. .cache
  77. nosetests.xml
  78. coverage.xml
  79. *.cover
  80. *.py,cover
  81. .hypothesis/
  82. .pytest_cache/
  83. cover/
  84. # Translations
  85. *.mo
  86. *.pot
  87. # Django stuff:
  88. *.log
  89. local_settings.py
  90. db.sqlite3
  91. db.sqlite3-journal
  92. # Flask stuff:
  93. instance/
  94. .webassets-cache
  95. # Scrapy stuff:
  96. .scrapy
  97. # Sphinx documentation
  98. documentation/_build/
  99. documentation/build/
  100. # PyBuilder
  101. .pybuilder/
  102. target/
  103. # Jupyter Notebook
  104. .ipynb_checkpoints
  105. # IPython
  106. profile_default/
  107. ipython_config.py
  108. # pyenv
  109. # For a library or package, you might want to ignore these files since the code is
  110. # intended to run in multiple environments; otherwise, check them in:
  111. # .python-version
  112. # pipenv
  113. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  114. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  115. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  116. # install all needed dependencies.
  117. #Pipfile.lock
  118. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  119. __pypackages__/
  120. # Celery stuff
  121. celerybeat-schedule
  122. celerybeat.pid
  123. # SageMath parsed files
  124. *.sage.py
  125. # Environments
  126. .env
  127. .venv
  128. env/
  129. venv/
  130. ENV/
  131. env.bak/
  132. venv.bak/
  133. # Spyder project settings
  134. .spyderproject
  135. .spyproject
  136. # Rope project settings
  137. .ropeproject
  138. # mkdocs documentation
  139. /site
  140. # mypy
  141. .mypy_cache/
  142. .dmypy.json
  143. dmypy.json
  144. # Pyre type checker
  145. .pyre/
  146. # pytype static type analyzer
  147. .pytype/
  148. # Cython debug symbols
  149. cython_debug/
  150. .idea
  151. docs/.doctrees
  152. # End of https://www.toptal.com/developers/gitignore/api/linux,macos,python
Discard
Tip!

Press p or to see the previous file or, n or to see the next file