-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
81 lines (64 loc) · 1.15 KB
/
.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# vim
*.swp
# cmake
build
out
# proto
*.bin
# caffemodel
*.caffemodel
# python cache
__pycache__
# dot image
*.png
# json
*.json
# dot
*.dot
# pdf
*.pdf
# ctag
tags
# exec_json
*.exec_json
# csv
*.csv
# tensorflow
/tensorflow
/models
/datasets
# mnist ckpts
sandbox/mnist/*/*.pb
sandbox/mnist/*/ckpts
sandbox/mnist/*/export
sandbox/mnist/*/summary
sandbox/mnist/*/dots
sandbox/*.apk
# float-ops ckpts
sandbox/ops/float-ops/*/*.pb
sandbox/ops/float-ops/*/ckpts
sandbox/ops/float-ops/*/export
sandbox/ops/float-ops/*/summary
sandbox/ops/float-ops/*/dots
sandbox/ops/float-ops/*/*.pyc
# quant-ops ckpts
sandbox/ops/quant-ops/*/*.pb
sandbox/ops/quant-ops/*/ckpts
sandbox/ops/quant-ops/*/export
sandbox/ops/quant-ops/*/summary
sandbox/ops/quant-ops/*/dots
sandbox/ops/quant-ops/*/*.pyc
# rnn-ops ckpts
sandbox/ops/rnn-ops/*/*.pb
sandbox/ops/rnn-ops/*/ckpts
sandbox/ops/rnn-ops/*/export
sandbox/ops/rnn-ops/*/summary
sandbox/ops/rnn-ops/*/dots
sandbox/ops/rnn-ops/*/*.pyc
# uint8-ops ckpts
sandbox/ops/uint8-ops/*/*.pb
sandbox/ops/uint8-ops/*/ckpts
sandbox/ops/uint8-ops/*/export
sandbox/ops/uint8-ops/*/summary
sandbox/ops/uint8-ops/*/dots
sandbox/ops/uint8-ops/*/*.pyc