Sm00thix commited on
Commit
8d060be
·
1 Parent(s): 78a947a

Initial upload of source and weights

Browse files
Files changed (31) hide show
  1. .gitignore +18 -0
  2. model_weights/1/best_weights.pt +0 -3
  3. model_weights/2/best_weights.pt +0 -3
  4. model_weights/3/best_weights.pt +0 -3
  5. model_weights/4/best_weights.pt +0 -3
  6. model_weights/5/best_weights.pt +0 -3
  7. src/callbacks/__pycache__/early_stopping.cpython-312.pyc +0 -0
  8. src/callbacks/__pycache__/model_checkpoint.cpython-312.pyc +0 -0
  9. src/dataloaders/__pycache__/image_crop_dataloader.cpython-312.pyc +0 -0
  10. src/dataloaders/__pycache__/image_dataloader.cpython-312.pyc +0 -0
  11. src/dataloaders/__pycache__/preprocessed_image_dataloader.cpython-312.pyc +0 -0
  12. src/dataloaders/__pycache__/spectrum_dataloader.cpython-312.pyc +0 -0
  13. src/datasets/__pycache__/image_crop_dataset.cpython-312.pyc +0 -0
  14. src/datasets/__pycache__/image_dataset.cpython-312.pyc +0 -0
  15. src/datasets/__pycache__/preprocessed_image_dataset.cpython-312.pyc +0 -0
  16. src/datasets/__pycache__/spectrum_dataset.cpython-312.pyc +0 -0
  17. src/datasets/__pycache__/transforms.cpython-312.pyc +0 -0
  18. src/datasets/__pycache__/utils.cpython-312.pyc +0 -0
  19. src/losses/__pycache__/out_ouf_bounds_losses.cpython-312.pyc +0 -0
  20. src/losses/__pycache__/regression_losses.cpython-312.pyc +0 -0
  21. src/losses/__pycache__/regularization_losses.cpython-312.pyc +0 -0
  22. src/losses/__pycache__/smoothness_losses.cpython-312.pyc +0 -0
  23. src/losses/__pycache__/total_loss.cpython-312.pyc +0 -0
  24. src/models/__pycache__/compound_model.cpython-312.pyc +0 -0
  25. src/models/__pycache__/conv3don2d.cpython-312.pyc +0 -0
  26. src/models/__pycache__/ensemble_model.cpython-312.pyc +0 -0
  27. src/models/__pycache__/unet.cpython-312.pyc +0 -0
  28. src/optimizers/__pycache__/optimizers.cpython-312.pyc +0 -0
  29. src/pipeline/__pycache__/pipeline.cpython-312.pyc +0 -0
  30. src/schedulers/__pycache__/learning_rate_schedulers.cpython-312.pyc +0 -0
  31. src/transforms/__pycache__/transforms.cpython-312.pyc +0 -0
.gitignore ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *.so
5
+
6
+ # Jupyter and VSCode artifacts
7
+ .ipynb_checkpoints/
8
+ .vscode/
9
+
10
+ # OS-specific
11
+ .DS_Store
12
+ Thumbs.db
13
+
14
+ # Git LFS (optional if used)
15
+ *.pt
16
+
17
+ # Hugging Face cache (if ever used)
18
+ ~/.cache/huggingface
model_weights/1/best_weights.pt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:bdaaa551299c21945c2b474373767bd83fb7a8298dee9cbe9cf0ff5239d2c955
3
- size 115916874
 
 
 
 
model_weights/2/best_weights.pt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a2965daa9b1b64a583855ad414afcf71e20e1ba1a98f9a8eb2bf1b45669cd756
3
- size 115916874
 
 
 
 
model_weights/3/best_weights.pt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ad062a46892bbbd3eb43d7dbb9148456a25bb40aeb524f58007fbd267ea15d75
3
- size 115916874
 
 
 
 
model_weights/4/best_weights.pt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:26d42e6c2a8ccae93c9291b65d008d183d3456d9a9ff572be083346f836ddeb0
3
- size 115916874
 
 
 
 
model_weights/5/best_weights.pt DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e640027c7ef742c5afe727f89fb51a393d63c9a4202a4ea8875bcb269ee85043
3
- size 115916874
 
 
 
 
src/callbacks/__pycache__/early_stopping.cpython-312.pyc DELETED
Binary file (3.19 kB)
 
src/callbacks/__pycache__/model_checkpoint.cpython-312.pyc DELETED
Binary file (3.93 kB)
 
src/dataloaders/__pycache__/image_crop_dataloader.cpython-312.pyc DELETED
Binary file (919 Bytes)
 
src/dataloaders/__pycache__/image_dataloader.cpython-312.pyc DELETED
Binary file (849 Bytes)
 
src/dataloaders/__pycache__/preprocessed_image_dataloader.cpython-312.pyc DELETED
Binary file (990 Bytes)
 
src/dataloaders/__pycache__/spectrum_dataloader.cpython-312.pyc DELETED
Binary file (604 Bytes)
 
src/datasets/__pycache__/image_crop_dataset.cpython-312.pyc DELETED
Binary file (7.05 kB)
 
src/datasets/__pycache__/image_dataset.cpython-312.pyc DELETED
Binary file (11.3 kB)
 
src/datasets/__pycache__/preprocessed_image_dataset.cpython-312.pyc DELETED
Binary file (6.52 kB)
 
src/datasets/__pycache__/spectrum_dataset.cpython-312.pyc DELETED
Binary file (5.69 kB)
 
src/datasets/__pycache__/transforms.cpython-312.pyc DELETED
Binary file (1.29 kB)
 
src/datasets/__pycache__/utils.cpython-312.pyc DELETED
Binary file (11.1 kB)
 
src/losses/__pycache__/out_ouf_bounds_losses.cpython-312.pyc DELETED
Binary file (3.59 kB)
 
src/losses/__pycache__/regression_losses.cpython-312.pyc DELETED
Binary file (3.38 kB)
 
src/losses/__pycache__/regularization_losses.cpython-312.pyc DELETED
Binary file (3.4 kB)
 
src/losses/__pycache__/smoothness_losses.cpython-312.pyc DELETED
Binary file (3.92 kB)
 
src/losses/__pycache__/total_loss.cpython-312.pyc DELETED
Binary file (4.18 kB)
 
src/models/__pycache__/compound_model.cpython-312.pyc DELETED
Binary file (1.12 kB)
 
src/models/__pycache__/conv3don2d.cpython-312.pyc DELETED
Binary file (5.17 kB)
 
src/models/__pycache__/ensemble_model.cpython-312.pyc DELETED
Binary file (1.37 kB)
 
src/models/__pycache__/unet.cpython-312.pyc DELETED
Binary file (18.5 kB)
 
src/optimizers/__pycache__/optimizers.cpython-312.pyc DELETED
Binary file (686 Bytes)
 
src/pipeline/__pycache__/pipeline.cpython-312.pyc DELETED
Binary file (19.1 kB)
 
src/schedulers/__pycache__/learning_rate_schedulers.cpython-312.pyc DELETED
Binary file (657 Bytes)
 
src/transforms/__pycache__/transforms.cpython-312.pyc DELETED
Binary file (817 Bytes)