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

.gitignore 349 B

You have to be logged in to leave a comment. Sign In
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
  1. # Pacharm settings
  2. .idea/
  3. build
  4. # Venv
  5. venv/
  6. # Dataset
  7. datasets/
  8. # Python chache
  9. __pycache__/
  10. .ipynb_checkpoints
  11. .cache
  12. # Logs folders
  13. logs
  14. lightning_logs*
  15. tmp
  16. mlruns
  17. # Audio and video
  18. *.avi
  19. *.mp4
  20. # Images
  21. *.jpg
  22. *.bmp
  23. *.png
  24. *.svg
  25. # Archives
  26. *.tgz
  27. *.zip
  28. *.rar
  29. *.gz
  30. *.npz
  31. *.txt
  32. *.db
  33. # Python models
  34. *.npy
  35. *.pkl
  36. *.pt
  37. *.pth
  38. *.ckpt
  39. /metrics.json
Tip!

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

Comments

Loading...