-
Notifications
You must be signed in to change notification settings - Fork 131
/
.gitignore
47 lines (41 loc) · 853 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
############## MEDIA AND DATA FILES ##############
*.pdf
*.png
*.jpg
*.json
*.csv
*.mp4
############## COMPILED FILES ##############
*.o
*.so
*.pyc
*.pyd
############## MACHINE SPECIFIC ##############
.vscode/
.idea/
.eggs/
*.egg-info/
.DS_Store
############## LOCAL FILES ##############
crfnet/playground/
crfnet/snapshots/
crfnet/out/
crfnet/feature_visualization/
crfnet/tb_logs/*
crfnet/saved_models/*
crfnet/data/tools/anchor_data/
crfnet/build/
crfnet/archive/
crfnet/experiments/
############## CONFIG FILES ############
crfnet/configs/*
crfnet/configs/neural_filter/*
############## Exceptions ##############
!crfnet/configs/neural_filter
!crfnet/configs/default.cfg
!crfnet/configs/neural_filter/default.json.example
!crfnet/configs/README.md
!crfnet/images/*.png
!crfnet/tb_logs/.gitkeep
!crfnet/saved_models/.gitkeep
*.code-workspace