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 2.3 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  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. *.pyc
  20. # Compiled MATLAB
  21. *.mex*
  22. # IPython notebook checkpoints
  23. .ipynb_checkpoints
  24. # LevelDB files
  25. *.sst
  26. *.ldb
  27. LOCK
  28. LOG*
  29. CURRENT
  30. MANIFEST-*
  31. ######################### IDEs Files #########################
  32. # Editor temporaries
  33. *.swp
  34. *~
  35. # Sublime Text settings
  36. *.sublime-workspace
  37. *.sublime-project
  38. # Eclipse Project settings
  39. *.*project
  40. .settings
  41. # QtCreator files
  42. *.user
  43. # PyCharm files
  44. .idea
  45. # OSX dir files
  46. .DS_Store
  47. ._.DS_Store
  48. # Vim files
  49. cscope.*
  50. tags
  51. .clang_complete
  52. .vim
  53. ######################### Windows (Visual Studio) Files #########################
  54. *.db
  55. *.deps
  56. *.obj
  57. *.opendb
  58. *.pdb
  59. ######################### Windows (Visual Studio) Folders and Compressed files #########################
  60. *.vs/
  61. *x64/
  62. # Allowing this file (removed *.user for Qt)
  63. !*.vcxproj.user
  64. ######################### Caffe Files / Folders #########################
  65. # User's build configuration
  66. Makefile
  67. Makefile.config
  68. # Data and models are either
  69. # 1. reference, and not casually committed
  70. # 2. custom, and live on their own unless they're deliberated contributed
  71. distribute/
  72. *.caffemodel
  73. *.caffemodel.h5
  74. *.solverstate
  75. *.solverstate.h5
  76. *.binaryproto
  77. *leveldb
  78. *lmdb
  79. # Camera parameters
  80. *.xml
  81. ######################### 3rd-party Folders and Zip Files #########################
  82. 3rdparty/caffe/.git
  83. 3rdparty/caffe/.github
  84. 3rdparty/asio/
  85. 3rdparty/eigen/
  86. 3rdparty/windows/caffe/
  87. 3rdparty/windows/caffe_cpu/
  88. 3rdparty/windows/caffe_opencl/
  89. 3rdparty/windows/caffe3rdparty/
  90. 3rdparty/windows/opencv/
  91. 3rdparty/windows/freeglut/
  92. 3rdparty/windows/spinnaker/
  93. 3rdparty/*zip
  94. 3rdparty/windows/*zip
  95. ######################### Compilation (build, distribute & bins) Files / Folders #########################
  96. *.bin
  97. *.testbin
  98. build
  99. build*
  100. .build*
  101. *cmake_build
  102. distribute/*
  103. python/caffe/proto/
  104. ######################### Generated Documentation #########################
  105. _site
  106. docs/_site
  107. docs/dev
  108. docs/gathered
  109. doxygen
  110. html/
  111. ######################### Video Files #########################
  112. # Testing videos
  113. *.mp4
  114. *.mov
  115. ######################### Validation Scripts & Testing #########################
  116. output*/
Tip!

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

Comments

Loading...