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.1 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
  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. # Vim files
  48. cscope.*
  49. tags
  50. .clang_complete
  51. .vim
  52. ######################### Windows (Visual Studio) Files #########################
  53. *.db
  54. *.deps
  55. *.obj
  56. *.opendb
  57. *.pdb
  58. ######################### Windows (Visual Studio) Folders and Compressed files #########################
  59. *.vs/
  60. *x64/
  61. 3rdparty/windows/caffe/
  62. 3rdparty/windows/caffe_opencl/
  63. 3rdparty/windows/caffe3rdparty/
  64. 3rdparty/windows/opencv/
  65. 3rdparty/windows/freeglut/
  66. 3rdparty/windows/spinnaker/
  67. 3rdparty/windows/*zip
  68. # Allowing this file (removed *.user for Qt)
  69. !*.vcxproj.user
  70. ######################### Caffe Files / Folders #########################
  71. # User's build configuration
  72. Makefile
  73. Makefile.config
  74. # Data and models are either
  75. # 1. reference, and not casually committed
  76. # 2. custom, and live on their own unless they're deliberated contributed
  77. 3rdparty/caffe/.git
  78. 3rdparty/caffe/.github
  79. distribute/
  80. *.caffemodel
  81. *.caffemodel.h5
  82. *.solverstate
  83. *.solverstate.h5
  84. *.binaryproto
  85. *leveldb
  86. *lmdb
  87. # Camera parameters
  88. *.xml
  89. ######################### Compilation (build, distribute & bins) Files / Folders #########################
  90. *.bin
  91. *.testbin
  92. build
  93. build*
  94. .build*
  95. *cmake_build
  96. distribute/*
  97. python/caffe/proto/
  98. ######################### Generated Documentation #########################
  99. _site
  100. docs/_site
  101. docs/dev
  102. docs/gathered
  103. doxygen
  104. html/
  105. ######################### Video Files #########################
  106. # Testing videos
  107. *.mp4
  108. *.mov
  109. ######################### Validation Scripts & Testing #########################
  110. output*/
Tip!

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

Comments

Loading...