Nadine Rueegg commited on
Commit
45abb23
1 Parent(s): eebcdbb

gitignore and gitattributes

Browse files
Files changed (1) hide show
  1. .gitignore +176 -0
.gitignore ADDED
@@ -0,0 +1,176 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ #custom
3
+ /checkpoint
4
+ debugging
5
+ /datasets
6
+ src/smal_pytorch/smal_data/optional
7
+ /datasets/*
8
+ !/datasets/test_image_crops
9
+ /results
10
+ /gradio_cached_examples
11
+ /flagged
12
+ *_orig.py
13
+ *_orig.yaml
14
+ *copy.py
15
+ src/graph_networks/graphcmr/data/meshes
16
+ src/graph_networks/graphcmr/old_data
17
+ src/evaluation/*.obj
18
+ src/evaluation/*.ply
19
+ /old
20
+ src/graph_networks/losses_for_vertex_wise_predictions/debugging_results
21
+ /overview_bite_cvpr
22
+
23
+ #/data/dog_toys_and_unity_models
24
+ #/data/smal_data/new_dog_models/additional_info
25
+ #!/data/smal_data/new_dog_models/additional_info/dog39_registrations_with_breeds.pdf
26
+ #/data/smal_data/smalr_uv_map
27
+ #/data/smal_data/textures_from_blender
28
+ #/data/stanext_related_data/animalpose_hg8_v0_results_on_StanExt
29
+ #/data/stanext_related_data/animalpose_hg8_v1_results_on_StanExt
30
+ #!data/stanext_related_data/ground_contact_annotations/all_vertex_distances.npy
31
+ #data/stanext_related_data/ground_contact_annotations/stage3/vis
32
+ #data/stanext_related_data/ground_contact_annotations/stage2b/vis
33
+ #data/stanext_related_data/ground_contact_annotations/stage3/vertex_distances_gc_nongc
34
+ #data/stanext_related_data/ground_contact_annotations/stage2b/vertex_distances_gc_nongc
35
+ #data/stanext_related_data/ground_contact_annotations/stage3/gc_annots_overview_first699.pkl
36
+ #data/stanext_related_data/ground_contact_annotations/stage3/gc_annots_overview_stage3complete.pkl
37
+ #data/smal_data_remeshed/uniform_surface_sampling
38
+ #data/texture_related/
39
+ /data/*
40
+ src/test_time_optimization/texture/debug
41
+ src/test_time_optimization/texture/debug_v2
42
+
43
+ # files that are too big
44
+ data/stanext_related_data/ground_contact_annotations/stage3/gc_annots_overview_stage3complete_withtraintestval.pkl
45
+ data/stanext_related_data/ground_contact_annotations/all_vertex_distances.npy
46
+
47
+
48
+ # Byte-compiled / optimized / DLL files
49
+ __pycache__/
50
+ *.py[cod]
51
+ *$py.class
52
+
53
+ # C extensions
54
+ *.so
55
+
56
+ # Distribution / packaging
57
+ .Python
58
+ build/
59
+ develop-eggs/
60
+ dist/
61
+ downloads/
62
+ eggs/
63
+ .eggs/
64
+ lib/
65
+ lib64/
66
+ parts/
67
+ sdist/
68
+ var/
69
+ wheels/
70
+ pip-wheel-metadata/
71
+ share/python-wheels/
72
+ *.egg-info/
73
+ .installed.cfg
74
+ *.egg
75
+ MANIFEST
76
+
77
+ # PyInstaller
78
+ # Usually these files are written by a python script from a template
79
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
80
+ *.manifest
81
+ *.spec
82
+
83
+ # Installer logs
84
+ pip-log.txt
85
+ pip-delete-this-directory.txt
86
+
87
+ # Unit test / coverage reports
88
+ htmlcov/
89
+ .tox/
90
+ .nox/
91
+ .coverage
92
+ .coverage.*
93
+ .cache
94
+ nosetests.xml
95
+ coverage.xml
96
+ *.cover
97
+ *.py,cover
98
+ .hypothesis/
99
+ .pytest_cache/
100
+
101
+ # Translations
102
+ *.mo
103
+ *.pot
104
+
105
+ # Django stuff:
106
+ *.log
107
+ local_settings.py
108
+ db.sqlite3
109
+ db.sqlite3-journal
110
+
111
+ # Flask stuff:
112
+ instance/
113
+ .webassets-cache
114
+
115
+ # Scrapy stuff:
116
+ .scrapy
117
+
118
+ # Sphinx documentation
119
+ docs/_build/
120
+
121
+ # PyBuilder
122
+ target/
123
+
124
+ # Jupyter Notebook
125
+ .ipynb_checkpoints
126
+
127
+ # IPython
128
+ profile_default/
129
+ ipython_config.py
130
+
131
+ # pyenv
132
+ .python-version
133
+
134
+ # pipenv
135
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
136
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
137
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
138
+ # install all needed dependencies.
139
+ #Pipfile.lock
140
+
141
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
142
+ __pypackages__/
143
+
144
+ # Celery stuff
145
+ celerybeat-schedule
146
+ celerybeat.pid
147
+
148
+ # SageMath parsed files
149
+ *.sage.py
150
+
151
+ # Environments
152
+ .env
153
+ .venv
154
+ env/
155
+ venv/
156
+ ENV/
157
+ env.bak/
158
+ venv.bak/
159
+
160
+ # Spyder project settings
161
+ .spyderproject
162
+ .spyproject
163
+
164
+ # Rope project settings
165
+ .ropeproject
166
+
167
+ # mkdocs documentation
168
+ /site
169
+
170
+ # mypy
171
+ .mypy_cache/
172
+ .dmypy.json
173
+ dmypy.json
174
+
175
+ # Pyre type checker
176
+ .pyre/