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 1.6 KB

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
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
  1. ######################### Binary Files #########################
  2. # Compiled Object files
  3. *.slo
  4. *.lo
  5. *.o
  6. *.cuo
  7. # Compiled Dynamic libraries
  8. *.so*
  9. *.dylib
  10. # Compiled Static libraries
  11. *.lai
  12. *.la
  13. *.a
  14. # Compiled protocol buffers
  15. *.pb.h
  16. *.pb.cc
  17. *_pb2.py
  18. # Compiled python
  19. *__init__.py
  20. *.pyc
  21. # Compiled MATLAB
  22. *.mex*
  23. # IPython notebook checkpoints
  24. .ipynb_checkpoints
  25. # LevelDB files
  26. *.sst
  27. *.ldb
  28. LOCK
  29. LOG*
  30. CURRENT
  31. MANIFEST-*
  32. ######################### IDEs Files #########################
  33. # Editor temporaries
  34. *.swp
  35. *~
  36. # Sublime Text settings
  37. *.sublime-workspace
  38. *.sublime-project
  39. # Eclipse Project settings
  40. *.*project
  41. .settings
  42. # QtCreator files
  43. *.user
  44. # PyCharm files
  45. .idea
  46. # OSX dir files
  47. .DS_Store
  48. ######################### Caffe Files / Folders #########################
  49. # User's build configuration
  50. Makefile.config
  51. # Data and models are either
  52. # 1. reference, and not casually committed
  53. # 2. custom, and live on their own unless they're deliberated contributed
  54. 3rdparty/caffe/.*
  55. distribute/
  56. .build_release/
  57. .build_debug/
  58. *.caffemodel
  59. *.caffemodel.h5
  60. *.solverstate
  61. *.solverstate.h5
  62. *.binaryproto
  63. *leveldb
  64. *lmdb
  65. ######################### Compilation (build, distribute & bins) Files / Folders #########################
  66. *.bin
  67. *.testbin
  68. build
  69. *build_debug/
  70. *build_release/
  71. *cmake_build
  72. distribute/*
  73. python/caffe/proto/
  74. ######################### Generated Documentation #########################
  75. _site
  76. docs/_site
  77. docs/dev
  78. docs/gathered
  79. doxygen
  80. html/
  81. ######################### Video Files #########################
  82. # Testing videos
  83. *.mp4
  84. *.mov
  85. ######################### Validation Scripts & Testing #########################
  86. *validation.sh
  87. validation*.sh
  88. output*/
Tip!

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

Comments

Loading...