ignore wandb to resolve isort headaches (#619)
Browse files- .gitignore +4 -0
- .isort.cfg +1 -0
.gitignore
CHANGED
@@ -161,3 +161,7 @@ cython_debug/
|
|
161 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
162 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
163 |
.idea/
|
|
|
|
|
|
|
|
|
|
161 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
162 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
163 |
.idea/
|
164 |
+
|
165 |
+
# WandB
|
166 |
+
# wandb creates a folder to store logs for training runs
|
167 |
+
wandb
|
.isort.cfg
CHANGED
@@ -1,2 +1,3 @@
|
|
1 |
[settings]
|
2 |
profile=black
|
|
|
|
1 |
[settings]
|
2 |
profile=black
|
3 |
+
known_third_party=wandb
|