|
1234567891011121314151617 |
- package dataset
-
- func GetResourceType(cloudbrainType int) string {
- if cloudbrainType == 0 {
- return "CPU/GPU"
- } else {
- return "NPU"
- }
- }
-
- func GetStatusText(isPrivate bool) string {
- if isPrivate {
- return "dataset.private"
- } else {
- return "dataset.public"
- }
- }
|