github.com/morlay/goqcloud@v0.0.0-20181123023149-b00e0b0b9afc/clients/tia/data_types.go (about) 1 package tia 2 3 // 训练任务信息 4 5 type Job *Job 6 7 // 日志 8 9 type Log *Log 10 11 // 用于描述模型的详细情况 12 // "Model": { 13 // "Name": "test-model", 14 // "Description": "test-model", 15 // "Cluster": "ap-beijing", 16 // "Model": "cos://test-1255502019.cos.ap-shanghai.myqcloud.com/example:/data/mnist", 17 // "RuntimeVersion": "tiaserv-1.6.0-cpu", 18 // "CreateTime": "2018-04-26 15:59:25 +0800 CST", 19 // "State": "Running", 20 // "ServingUrl": "140.143.51.230", 21 // "Message": "Deployment does not have minimum availability.", 22 // "AppId": 1255502019, 23 // "ServType": "1U2G0P" 24 // }, 25 26 type Model *Model