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 908 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  1. # Windows image file caches
  2. Thumbs.db
  3. ehthumbs.db
  4. # Folder config file
  5. Desktop.ini
  6. # Recycle Bin used on file shares
  7. $RECYCLE.BIN/
  8. # Compiled source
  9. *.mexa64
  10. *.mexw64
  11. *.asv
  12. # Windows shortcuts
  13. *.lnk
  14. # builds
  15. .eggs
  16. # python and jupyter
  17. jupyter/.ipynb_checkpoints/
  18. jupyter/__pycache__/
  19. jupyter/*.npy
  20. jupyter/*.tif
  21. .ipynb_checkpoints/
  22. __pycache__/
  23. dist/
  24. suite2p.egg-info/
  25. build/
  26. suite2p/classifiers/classifier_user.npy
  27. suite2p/ops/ops_user.npy
  28. *.ipynb
  29. .buildinfo
  30. doctrees/
  31. # =========================
  32. # Operating System Files
  33. # =========================
  34. # OSX
  35. # =========================
  36. .DS_Store
  37. .AppleDouble
  38. .LSOverride
  39. # visual studio code
  40. .vscode
  41. # pycharm
  42. .idea
  43. # Thumbnails
  44. ._*
  45. # Files that might appear on external disk
  46. .Spotlight-V100
  47. .Trashes
  48. # Directories potentially created on remote AFP share
  49. .AppleDB
  50. .AppleDesktop
  51. Network Trash Folder
  52. Temporary Items
  53. .apdisk
  54. # data
  55. data/test_data
Tip!

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

Comments

Loading...