You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package option
-
- type AiOption struct {
- AdapterId string
- ClusterIds []string
- TaskName string
- Replica int64
- ResourceType string // cpu/gpu/compute card
- CpuCoreNum int64
- TaskType string // pytorch/tensorflow/mindspore
- DatasetsName string // mnist/imageNet/iris
- StrategyName string
- ClusterToStaticWeight map[string]int32
- Tops float64
- ComputeCard string
- CodeType string
- AlgorithmName string
-
- ImageId string
- SpecId string
- DatasetsId string
- CodeId string
- ResourceId string
- AlgorithmId string
-
- Cmd string
- Envs []string
- Params []string
-
- Datasets string
- AlgorithmCode string
- Image string
- Model interface{}
- }
-
- func (a AiOption) GetOptionType() string {
- return AI
- }
|