tencentcloud-sdk-tione 3.0.704 → 3.0.706
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211111/models.rb +31 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80bbe938f1a2e0b20aec3996ba0706abcdd34097
|
4
|
+
data.tar.gz: c9125de5f9c734d399a25c74906bcd9e34eb6ea5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ef92746c51acf8a6a3638815db8029c898d14628e710bf47eaad6c40fbadff96c813206c30ac4cef776e5145add852bd843fe57311ea4d46e791bf805d64557
|
7
|
+
data.tar.gz: a74d60eb653150c2d02cea5498adb2d24c1f9d4d52cb397640814211c2d740f1f42e65f8c519ea2a123bc8d588f462b7dc1ae26576253baedcd9e74fd9c6688e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.706
|
data/lib/v20211111/models.rb
CHANGED
@@ -1797,10 +1797,12 @@ module TencentCloud
|
|
1797
1797
|
# @type DataSource: String
|
1798
1798
|
# @param CallbackUrl: 回调地址,用于创建/启动/停止训练任务的异步回调。回调格式&内容详见:[[TI-ONE接口回调说明]](https://cloud.tencent.com/document/product/851/84292)
|
1799
1799
|
# @type CallbackUrl: String
|
1800
|
+
# @param PreTrainModel: 太极预训练模型ID
|
1801
|
+
# @type PreTrainModel: :class:`Tencentcloud::Tione.v20211111.models.PreTrainModel`
|
1800
1802
|
|
1801
|
-
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ResourceGroupId, :Tags, :ImageInfo, :CodePackagePath, :StartCmdInfo, :TrainingMode, :DataConfigs, :VpcId, :SubnetId, :Output, :LogConfig, :TuningParameters, :LogEnable, :Remark, :DataSource, :CallbackUrl
|
1803
|
+
attr_accessor :Name, :ChargeType, :ResourceConfigInfos, :FrameworkName, :FrameworkVersion, :FrameworkEnvironment, :ResourceGroupId, :Tags, :ImageInfo, :CodePackagePath, :StartCmdInfo, :TrainingMode, :DataConfigs, :VpcId, :SubnetId, :Output, :LogConfig, :TuningParameters, :LogEnable, :Remark, :DataSource, :CallbackUrl, :PreTrainModel
|
1802
1804
|
|
1803
|
-
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, resourcegroupid=nil, tags=nil, imageinfo=nil, codepackagepath=nil, startcmdinfo=nil, trainingmode=nil, dataconfigs=nil, vpcid=nil, subnetid=nil, output=nil, logconfig=nil, tuningparameters=nil, logenable=nil, remark=nil, datasource=nil, callbackurl=nil)
|
1805
|
+
def initialize(name=nil, chargetype=nil, resourceconfiginfos=nil, frameworkname=nil, frameworkversion=nil, frameworkenvironment=nil, resourcegroupid=nil, tags=nil, imageinfo=nil, codepackagepath=nil, startcmdinfo=nil, trainingmode=nil, dataconfigs=nil, vpcid=nil, subnetid=nil, output=nil, logconfig=nil, tuningparameters=nil, logenable=nil, remark=nil, datasource=nil, callbackurl=nil, pretrainmodel=nil)
|
1804
1806
|
@Name = name
|
1805
1807
|
@ChargeType = chargetype
|
1806
1808
|
@ResourceConfigInfos = resourceconfiginfos
|
@@ -1823,6 +1825,7 @@ module TencentCloud
|
|
1823
1825
|
@Remark = remark
|
1824
1826
|
@DataSource = datasource
|
1825
1827
|
@CallbackUrl = callbackurl
|
1828
|
+
@PreTrainModel = pretrainmodel
|
1826
1829
|
end
|
1827
1830
|
|
1828
1831
|
def deserialize(params)
|
@@ -1884,6 +1887,10 @@ module TencentCloud
|
|
1884
1887
|
@Remark = params['Remark']
|
1885
1888
|
@DataSource = params['DataSource']
|
1886
1889
|
@CallbackUrl = params['CallbackUrl']
|
1890
|
+
unless params['PreTrainModel'].nil?
|
1891
|
+
@PreTrainModel = PreTrainModel.new
|
1892
|
+
@PreTrainModel.deserialize(params['PreTrainModel'])
|
1893
|
+
end
|
1887
1894
|
end
|
1888
1895
|
end
|
1889
1896
|
|
@@ -7592,6 +7599,28 @@ module TencentCloud
|
|
7592
7599
|
end
|
7593
7600
|
end
|
7594
7601
|
|
7602
|
+
# 太极任务预训练模型信息
|
7603
|
+
class PreTrainModel < TencentCloud::Common::AbstractModel
|
7604
|
+
# @param ModelId: 模型ID
|
7605
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7606
|
+
# @type ModelId: String
|
7607
|
+
# @param ModelName: 模型名称
|
7608
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7609
|
+
# @type ModelName: String
|
7610
|
+
|
7611
|
+
attr_accessor :ModelId, :ModelName
|
7612
|
+
|
7613
|
+
def initialize(modelid=nil, modelname=nil)
|
7614
|
+
@ModelId = modelid
|
7615
|
+
@ModelName = modelname
|
7616
|
+
end
|
7617
|
+
|
7618
|
+
def deserialize(params)
|
7619
|
+
@ModelId = params['ModelId']
|
7620
|
+
@ModelName = params['ModelName']
|
7621
|
+
end
|
7622
|
+
end
|
7623
|
+
|
7595
7624
|
# PushTrainingMetrics请求参数结构体
|
7596
7625
|
class PushTrainingMetricsRequest < TencentCloud::Common::AbstractModel
|
7597
7626
|
# @param Data: 指标数据
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tione
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.706
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|