Transformers
Inference Endpoints
dolfim-ibm commited on
Commit
96e8ba4
1 Parent(s): 9a490e6

add gitignore and config.json for download counts

Browse files
Files changed (2) hide show
  1. .gitignore +298 -0
  2. config.json +3 -0
.gitignore ADDED
@@ -0,0 +1,298 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,python,vim,emacs
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=macos,visualstudiocode,python,vim,emacs
3
+
4
+ ### Emacs ###
5
+ # -*- mode: gitignore; -*-
6
+ *~
7
+ \#*\#
8
+ /.emacs.desktop
9
+ /.emacs.desktop.lock
10
+ *.elc
11
+ auto-save-list
12
+ tramp
13
+ .\#*
14
+
15
+ # Org-mode
16
+ .org-id-locations
17
+ *_archive
18
+
19
+ # flymake-mode
20
+ *_flymake.*
21
+
22
+ # eshell files
23
+ /eshell/history
24
+ /eshell/lastdir
25
+
26
+ # elpa packages
27
+ /elpa/
28
+
29
+ # reftex files
30
+ *.rel
31
+
32
+ # AUCTeX auto folder
33
+ /auto/
34
+
35
+ # cask packages
36
+ .cask/
37
+ dist/
38
+
39
+ # Flycheck
40
+ flycheck_*.el
41
+
42
+ # server auth directory
43
+ /server/
44
+
45
+ # projectiles files
46
+ .projectile
47
+
48
+ # directory configuration
49
+ .dir-locals.el
50
+
51
+ # network security
52
+ /network-security.data
53
+
54
+
55
+ ### macOS ###
56
+ # General
57
+ .DS_Store
58
+ .AppleDouble
59
+ .LSOverride
60
+
61
+ # Icon must end with two \r
62
+ Icon
63
+
64
+
65
+ # Thumbnails
66
+ ._*
67
+
68
+ # Files that might appear in the root of a volume
69
+ .DocumentRevisions-V100
70
+ .fseventsd
71
+ .Spotlight-V100
72
+ .TemporaryItems
73
+ .Trashes
74
+ .VolumeIcon.icns
75
+ .com.apple.timemachine.donotpresent
76
+
77
+ # Directories potentially created on remote AFP share
78
+ .AppleDB
79
+ .AppleDesktop
80
+ Network Trash Folder
81
+ Temporary Items
82
+ .apdisk
83
+
84
+ ### macOS Patch ###
85
+ # iCloud generated files
86
+ *.icloud
87
+
88
+ ### Python ###
89
+ # Byte-compiled / optimized / DLL files
90
+ __pycache__/
91
+ *.py[cod]
92
+ *$py.class
93
+
94
+ # C extensions
95
+ *.so
96
+
97
+ # Distribution / packaging
98
+ .Python
99
+ build/
100
+ develop-eggs/
101
+ downloads/
102
+ eggs/
103
+ .eggs/
104
+ lib/
105
+ lib64/
106
+ parts/
107
+ sdist/
108
+ var/
109
+ wheels/
110
+ share/python-wheels/
111
+ *.egg-info/
112
+ .installed.cfg
113
+ *.egg
114
+ MANIFEST
115
+
116
+ # PyInstaller
117
+ # Usually these files are written by a python script from a template
118
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
119
+ *.manifest
120
+ *.spec
121
+
122
+ # Installer logs
123
+ pip-log.txt
124
+ pip-delete-this-directory.txt
125
+
126
+ # Unit test / coverage reports
127
+ htmlcov/
128
+ .tox/
129
+ .nox/
130
+ .coverage
131
+ .coverage.*
132
+ .cache
133
+ nosetests.xml
134
+ coverage.xml
135
+ *.cover
136
+ *.py,cover
137
+ .hypothesis/
138
+ .pytest_cache/
139
+ cover/
140
+
141
+ # Translations
142
+ *.mo
143
+ *.pot
144
+
145
+ # Django stuff:
146
+ *.log
147
+ local_settings.py
148
+ db.sqlite3
149
+ db.sqlite3-journal
150
+
151
+ # Flask stuff:
152
+ instance/
153
+ .webassets-cache
154
+
155
+ # Scrapy stuff:
156
+ .scrapy
157
+
158
+ # Sphinx documentation
159
+ docs/_build/
160
+
161
+ # PyBuilder
162
+ .pybuilder/
163
+ target/
164
+
165
+ # Jupyter Notebook
166
+ .ipynb_checkpoints
167
+
168
+ # IPython
169
+ profile_default/
170
+ ipython_config.py
171
+
172
+ # pyenv
173
+ # For a library or package, you might want to ignore these files since the code is
174
+ # intended to run in multiple environments; otherwise, check them in:
175
+ # .python-version
176
+
177
+ # pipenv
178
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
179
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
180
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
181
+ # install all needed dependencies.
182
+ #Pipfile.lock
183
+
184
+ # poetry
185
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
186
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
187
+ # commonly ignored for libraries.
188
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
189
+ #poetry.lock
190
+
191
+ # pdm
192
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
193
+ #pdm.lock
194
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
195
+ # in version control.
196
+ # https://pdm.fming.dev/#use-with-ide
197
+ .pdm.toml
198
+
199
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
200
+ __pypackages__/
201
+
202
+ # Celery stuff
203
+ celerybeat-schedule
204
+ celerybeat.pid
205
+
206
+ # SageMath parsed files
207
+ *.sage.py
208
+
209
+ # Environments
210
+ .env
211
+ .venv
212
+ env/
213
+ venv/
214
+ ENV/
215
+ env.bak/
216
+ venv.bak/
217
+
218
+ # Spyder project settings
219
+ .spyderproject
220
+ .spyproject
221
+
222
+ # Rope project settings
223
+ .ropeproject
224
+
225
+ # mkdocs documentation
226
+ /site
227
+
228
+ # mypy
229
+ .mypy_cache/
230
+ .dmypy.json
231
+ dmypy.json
232
+
233
+ # Pyre type checker
234
+ .pyre/
235
+
236
+ # pytype static type analyzer
237
+ .pytype/
238
+
239
+ # Cython debug symbols
240
+ cython_debug/
241
+
242
+ # PyCharm
243
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
244
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
245
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
246
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
247
+ #.idea/
248
+
249
+ ### Python Patch ###
250
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
251
+ poetry.toml
252
+
253
+ # ruff
254
+ .ruff_cache/
255
+
256
+ # LSP config files
257
+ pyrightconfig.json
258
+
259
+ ### Vim ###
260
+ # Swap
261
+ [._]*.s[a-v][a-z]
262
+ !*.svg # comment out if you don't need vector files
263
+ [._]*.sw[a-p]
264
+ [._]s[a-rt-v][a-z]
265
+ [._]ss[a-gi-z]
266
+ [._]sw[a-p]
267
+
268
+ # Session
269
+ Session.vim
270
+ Sessionx.vim
271
+
272
+ # Temporary
273
+ .netrwhist
274
+ # Auto-generated tag files
275
+ tags
276
+ # Persistent undo
277
+ [._]*.un~
278
+
279
+ ### VisualStudioCode ###
280
+ .vscode/*
281
+ !.vscode/settings.json
282
+ !.vscode/tasks.json
283
+ !.vscode/launch.json
284
+ !.vscode/extensions.json
285
+ !.vscode/*.code-snippets
286
+
287
+ # Local History for Visual Studio Code
288
+ .history/
289
+
290
+ # Built Visual Studio Code Extensions
291
+ *.vsix
292
+
293
+ ### VisualStudioCode Patch ###
294
+ # Ignore all local history of files
295
+ .history
296
+ .ionide
297
+
298
+ # End of https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,python,vim,emacs
config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "_name_or_path": "docling-models"
3
+ }