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

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

Comments

Loading...