Skip to content

Commit

Permalink
Merge branch 'main' into 80-separate-large-vocabularies-use-custom-va…
Browse files Browse the repository at this point in the history
…lidation-from-small-vocabularies-and-subsets-use-codegen
  • Loading branch information
dbirman committed Nov 19, 2024
2 parents faeca81 + 97464a3 commit dc6683c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/aind_data_schema_models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Init package"""

__version__ = "0.6.1"
__version__ = "0.6.2"
10 changes: 10 additions & 0 deletions src/aind_data_schema_models/system_architecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@ class CPUArchitecture(str, Enum):
ARM64 = "Arm64"
ARM = "Arm32"
RISC_V = "RISC-V"


class ModelBackbone(str, Enum):
"""Model backbones"""

ALEXNET = "AlexNet"
CUSTOM = "Custom"
RESNET = "ResNet"
VGGNET = "VGGNet"
UNET = "UNet"

0 comments on commit dc6683c

Please sign in to comment.