Spaces:
Sleeping
Sleeping
File size: 913 Bytes
a3290d1 |
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 |
# Ignore project files
**/.idea
**/.DS_Store
**/.vscode
# Ignore cache
**/__pycache__
# Ignore egg files
**/*.egg-info
# Docs build files
docs/_build
# Ignore tensorflow logs
**/tf_log
# Ignore results
**/pik_data
**/preds
# Ignore test_data
**/test_data
**/testing_data
**/sample_data
**/test_results
# Ignore images
**/model_imgs
# Ignore data visualization scripts/images
**/data_visualization
**/OAI-iMorphics
# temp files
._*
# ignore checkpoint files
**/.ipynb_checkpoints/
**/.comp2comp/
# ignore cross validation files
*.cv
# ignore yml file
*.yml
*.yaml
!.github/workflows/format.yml
# ignore images
*.png
!panel_example.png
!logo.png
# except for pngs in the figures folder
!figures/*.png
# ignore any weights files
weights/
# preferences file
comp2comp/preferences.yaml
# model directory
**/.comp2comp_model_dir/
# slurm outputs
**/slurm/
# ignore outputs file
**/outputs/
**/models/
|