LLM-FineTuning-Large-Language-Models

Форк
0
396 строк · 4.3 Кб
1
.vscode/
2
*.vscode
3
/*.vscode
4
*/*.vscode
5
**/*.vscode
6
/.vscode
7
/.vscode/*
8
*/.vscode/*
9

10
node_modules/
11
Colab_Model_Download/
12
wandb/
13
mlruns
14

15
# Further if I have already pushed a directory to remote then remove that with below
16
# Execute a folder remove (rm) from index only (--cached) recursivelly (-r). Command line example for root bin folder:
17
# `git rm -r --cached full_absolute_path`
18
# e.g. I had to run the below kind of command to remove the ".next" folder that was pushed to remote github
19
# passing the full path of the .next folder
20
# git rm -r --cached /media/veracrypt2/014-agency-classic-next/.next
21

22

23
# See https://help.github.com/ignore-files/ for more about ignoring files.
24

25
HF_Models/
26
*HF_Models
27
/*HF_Models
28
*/*HF_Models
29
**/*HF_Models
30
/HF_Models
31
/HF_Models/*
32

33
*node_modules
34
/*node_modules
35
*/*node_modules
36
**/*node_modules
37
/node_modules
38
/node_modules/*
39
*/node_modules/*in
40

41
# If you have performed a task, such as adding a new line item to your .gitignore file,
42
# I MUST need to clear out your git repo's cache in order for the changes to take place. Here are the commands for doing that:
43
# git rm -r --cached . && git add . && git commit -am 'git cache cleared' && git push
44

45
__MACOSX/
46
*__MACOSX
47
/*__MACOSX
48
*/*__MACOSX
49
**/*__MACOSXc
50
/__MACOSX
51
/__MACOSX/*
52
*/__MACOSX/*
53

54
__pycache__/
55
*__pycache__
56
/*__pycache__
57
*/*__pycache__
58
**/*__pycache__c
59
/__pycache__
60
/__pycache__/*
61
*/__pycache__/*
62

63
.ipynb_checkpoints/
64
*.ipynb_checkpoints
65
/*.ipynb_checkpoints
66
*/*.ipynb_checkpoints
67
**/*.ipynb_checkpointsc
68
/.ipynb_checkpoints
69
/.ipynb_checkpoints/*
70
*/.ipynb_checkpoints/*
71

72
-checkpoint.ipynb/
73
*-checkpoint.ipynb
74
/*-checkpoint.ipynb
75
*/*-checkpoint.ipynb
76
**/*-checkpoint.ipynb
77
/-checkpoint.ipynb
78

79
.h5/
80
*.h5
81
/*.h5
82
*/*.h5
83
**/*.h5
84
/.h5
85

86
.pyc/
87
*.pyc
88
/*.pyc
89
*/*.pyc
90
**/*.pyc
91
/.pyc
92

93

94
.bin/
95
*.bin
96
/*.bin
97
*/*.bin
98
**/*.bin
99
/.bin
100

101
.json/
102
*.json
103
/*.json
104
*/*.json
105
**/*.json
106
/.json
107

108
.next/
109
*.next
110
/*.next
111
*/*.next
112
**/*.next
113
/.next
114
/.next/*
115
*/.next/*
116

117

118
.npy/
119
*.npy
120
/*.npy
121
*/*.npy
122
**/*.npy
123
/.npy
124

125
# testing
126
coverage/
127
*coverage
128
/*coverage
129
*/*coverage
130
**/*coverage
131
/coverage
132
/coverage/*
133
*/coverage/*
134

135
# production
136
build/
137
*build
138
/*build
139
*/*build
140
**/*build
141
/buildgs
142
/build/*
143
*/build/*
144

145

146
.db
147
.db/
148
*.db
149
/*.db
150
*/*.db
151
**/*.db
152
/.db
153

154

155
.pkl
156
.pkl/
157
*.pkl
158
/*.pkl
159
*/*.pkl
160
**/*.pkl
161
/.pkl
162

163
.hdf5
164
.hdf5/
165
*.hdf5
166
/*.hdf5
167
*/*.hdf5
168
**/*.hdf5
169
/.hdf5
170

171
.pt
172
.pt/
173
*.pt
174
/*.pt
175
*/*.pt
176
**/*.pt
177
/.pt
178

179

180
.pyc
181
.pyc/
182
*.pyc
183
/*.pyc
184
*/*.pyc
185
**/*.pyc
186
/.pyc
187

188

189
.txt
190
*.txt
191
/*.txt
192
*/*.txt
193
**/*.txt
194
/.txt
195

196

197
.csv
198
*.csv
199
/*.csv
200
*/*.csv
201
**/*.csv
202
/.csv
203

204
.index
205
*.index
206
/*.index
207
*/*.index
208
**/*.index
209
/.index
210

211
.mp4/
212
*.mp4
213
/*.mp4
214
*/*.mp4
215
**/*.mp4
216
/.mp4
217

218
.srt/
219
*.srt
220
/*.srt
221
*/*.srt
222
**/*.srt
223
/.srt
224

225
glove_vectors
226
*glove_vectors
227
/glove_vectors
228
*/*glove_vectors
229
**/*glove_vectors
230
/glove_vectors
231

232

233

234
.zip
235
*.zip
236
/*.zip
237
*/*.zip
238
**/*.zip
239
/.zip
240

241

242
.gz
243
*.gz
244
/*.gz
245
*/*.gz
246
**/*.gz
247
/.gz
248

249
*.rar
250
/*.rar
251
*/*.rar
252
**/*.rar
253
/.rar
254

255

256
.tgz/
257
*.tgz
258
/*.tgz
259
*/*.tgz
260
**/*.tgz
261
/.tgz
262

263
.tar/
264
*.tar
265
/*.tar
266
*/*.tar
267
**/*.tar
268
/.tar
269

270
*.7z
271
/*.7z
272
*/*.7z
273
**/*.7z
274
/.7z
275

276
.dcm/
277
*.dcm
278
/*.dcm
279
*/*.dcm
280
**/*.dcm
281
/.dcm
282

283
.tiff/
284
*.tiff
285
/*.tiff
286
*/*.tiff
287
**/*.tiff
288
/.tiff
289

290
.nii/
291
*.nii
292
/*.nii
293
*/*.nii
294
**/*.nii
295
/.nii
296

297
# misc
298
DS_Store/
299
.DS_Store
300
.env.local
301
.env.development.local
302
.env.test.local
303
.env.production.local
304

305
npm-debug.log*
306
yarn-debug.log*
307
yarn-error.log*
308

309
# Ignore docs files
310
_gh_pages
311
.ruby-version
312

313
# Numerous always-ignore extensions
314
*.diff
315
*.err
316
*.orig
317
*.log
318
*.rej
319
*.swo
320
*.swp
321
*.zip
322
*.vi
323
*~
324
*.~lock*
325
.~lock*
326

327
# OS or Editor folders
328
.DS_Store
329
._*
330
Thumbs.db
331
.cache
332
.project
333
.settings
334
.tmproj
335
*.esproj
336
nbproject
337
*.sublime-project
338
*.sublime-workspace
339
.idea
340

341
# Komodo
342
*.komodoproject
343
.komodotools
344

345
# grunt-html-validation
346
validation-status.json
347
validation-report.json
348

349

350
# Ignore all logfiles and tempfiles.
351
!/log/.keep
352
/tmp
353
/.gems
354

355
CountDownTimer-Note.odt
356
random-code-1.js
357
random-code-2.js
358
random-code-3.js
359
performance-1.js
360

361
test.html
362
test1.html
363
test2.html
364
test3.html
365

366
#ignore file name ending in "-bkp.js" OR "-bkp.ts"  OR "-bkp.py"  or "-test.js" OR "-test.ts" in its name. So I will have to put "-test.js" at all files that is just for my development-time random testing code .
367
**/*-bkp.js
368
**/*-bkp.ts
369
**/*-bkp.py
370
**/*-test.js
371
**/*-test.ts
372
**/*-test.py
373
**/*-test.ipynb
374
**/*-test.md
375
**/*-test.json
376

377
# OS or Editor folders
378
.DS_Store
379
._*
380
Thumbs.db
381
.cache
382
.project
383
.settings
384
.tmproj
385
*.esproj
386
nbproject
387
*.sublime-project
388
*.sublime-workspace
389
.idea
390
node_modules
391
Others_Code_gitignore
392
Project-Note-PAUL
393
.vscode
394

395
# Local Netlify folder
396
.netlify
397

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.