Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from typing import Union
from typing import Any, Dict, Union

CpuSpecificationType = Union[str, int, float]
StorageSpecificationType = Union[str, int, float] # TODO(phil): we can make this more specific.
FineTuneHparamValueType = Union[str, int, float] # should suffice for now
FineTuneHparamValueType = Union[
str, int, float, Dict[str, Any]
] # should just make this Any if we need to add more