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

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

Comments

Loading...