mirc-dataset-handler 0.2.2__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/PKG-INFO +1 -1
  2. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mirc_dataset_handler.egg-info/PKG-INFO +1 -1
  3. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/train_utils.py +1 -0
  4. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/pyproject.toml +1 -1
  5. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/LICENSE +0 -0
  6. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/README.md +0 -0
  7. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mirc_dataset_handler.egg-info/SOURCES.txt +0 -0
  8. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mirc_dataset_handler.egg-info/dependency_links.txt +0 -0
  9. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mirc_dataset_handler.egg-info/requires.txt +0 -0
  10. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mirc_dataset_handler.egg-info/top_level.txt +0 -0
  11. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/__init__.py +0 -0
  12. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/checkpoints_utils.py +0 -0
  13. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/data_utils.py +0 -0
  14. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/eval_utils.py +0 -0
  15. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/mirc_torch_dataset.py +0 -0
  16. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/mircdatasethandler/models_utils.py +0 -0
  17. {mirc_dataset_handler-0.2.2 → mirc_dataset_handler-0.2.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mirc-dataset-handler
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Utilities for loading MIRC annotations, creating subject-aware cross-validation splits, and building PyTorch DataLoaders for semantic segmentation workflows.
5
5
  Author: Iago Rodrigues
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mirc-dataset-handler
3
- Version: 0.2.2
3
+ Version: 0.2.3
4
4
  Summary: Utilities for loading MIRC annotations, creating subject-aware cross-validation splits, and building PyTorch DataLoaders for semantic segmentation workflows.
5
5
  Author: Iago Rodrigues
6
6
  License-Expression: MIT
@@ -13,6 +13,7 @@ def train_pipeline(model_name, backbone_name, dataloaders, checkpoint_dir, epoch
13
13
 
14
14
  for fold in range(start_fold, len(dataloaders)):
15
15
 
16
+ best_loss = 32000000
16
17
  net = get_model(model_name, backbone_name).to(device)
17
18
  optimizer = optim.RMSprop(net.parameters(), lr=learning_rate, weight_decay=1e-8, momentum=0.9)
18
19
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mirc-dataset-handler"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  description = "Utilities for loading MIRC annotations, creating subject-aware cross-validation splits, and building PyTorch DataLoaders for semantic segmentation workflows."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.9"