Skip to content

Commit

Permalink
Changed model names to reflect the actual models
Browse files Browse the repository at this point in the history
  • Loading branch information
JSabadin committed Oct 1, 2024
1 parent dd393f0 commit a94c8d7
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion configs/classification_heavy_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined heavy classification model

model:
name: cifar10_classification
name: segmentation_light
predefined_model:
name: ClassificationModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/classification_light_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined light classification model

model:
name: cifar10_classification
name: segmentation_light
predefined_model:
name: ClassificationModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/detection_heavy_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined heavy detection model

model:
name: coco_detection
name: detection_heavy
predefined_model:
name: DetectionModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/detection_light_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined light detection model

model:
name: coco_detection
name: detection_light
predefined_model:
name: DetectionModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/keypoint_bbox_heavy_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined heavy keypoint-detection model

model:
name: coco_keypoints
name: keypoint_detection_heavy
predefined_model:
name: KeypointDetectionModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/keypoint_bbox_light_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined light keypoint-detection model

model:
name: coco_keypoints
name: keypoint_detection_light
predefined_model:
name: KeypointDetectionModel
params:
Expand Down
5 changes: 2 additions & 3 deletions configs/segmentation_heavy_model.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# DDRNet-23-slim model for segmentation
# Refer to here for optimal hyperparameters for this model: https://github.com/Deci-AI/super-gradients/blob/4797c974c7c445d12e2575c468848d9c3e04becd/src/super_gradients/recipes/cityscapes_ddrnet.yaml#L4
# Example configuration for training a predefined heavy segmentation model

model:
name: ddrnet_segmentation
name: segmentation_heavy
predefined_model:
name: SegmentationModel
params:
Expand Down
2 changes: 1 addition & 1 deletion configs/segmentation_light_model.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Example configuration for training a predefined light segmentation model

model:
name: ddrnet_segmentation
name: segmentation_light
predefined_model:
name: SegmentationModel
params:
Expand Down

0 comments on commit a94c8d7

Please sign in to comment.