-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.gitignore
60 lines (59 loc) · 897 Bytes
/
.gitignore
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
#ignore executable files for rendering
prepare_data/render/render_scene/sfm_pose
prepare_data/render/render_scene/syn_pose
#ignore prediction files
**/pred/*
# ignore hdf5 data
**/*.h5
# ignore points data
**/*.pts
# ignore points segmentation data
**/*.seg
# ignore points annotations
**/*.arff
# ignore testing log
**/*.log
# ignore caffemodel
**/*.caffemodel
# ignore model dir
**/*.index
**/*.meta
**/*.data-00000-of-00001
**/checkpoint
# ignore .zip file
**/*.zip
# ignore .tar* file
**/*.tar*
# ignore .pyc file
**/*.pyc
# ignore .swap file
**/*.swp
# ignore .npy
**/*.npy
# ignore .npz
**/*.npz
# ignore .pkl
**/*.pkl
**/*.pickle
# ignore .gz
**/*.gz
# ignore .png
**/*.png
# ignore .jpg
**/*.jpg
**/*.jpeg
# ignore .pgm
**/*.pgm
# ignore .mtl
**/*.mtl
# ignore .obj
**/*.obj
# ignore .ply
**/*.ply
# ignore .tar
**/*.tar
# ignore .pbtxt
**/*.pbtxt
**/*.pb
# ignore .nfs file
**/.nfs*