-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_tableparametersubspace.go
27 lines (25 loc) · 1.3 KB
/
model_tableparametersubspace.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package labelingjob
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type TableParameterSubspace struct {
Booster *string `json:"booster,omitempty"`
BoostingType *string `json:"boostingType,omitempty"`
GrowPolicy *string `json:"growPolicy,omitempty"`
LearningRate *string `json:"learningRate,omitempty"`
MaxBin *string `json:"maxBin,omitempty"`
MaxDepth *string `json:"maxDepth,omitempty"`
MaxLeaves *string `json:"maxLeaves,omitempty"`
MinDataInLeaf *string `json:"minDataInLeaf,omitempty"`
MinSplitGain *string `json:"minSplitGain,omitempty"`
ModelName *string `json:"modelName,omitempty"`
NEstimators *string `json:"nEstimators,omitempty"`
NumLeaves *string `json:"numLeaves,omitempty"`
PreprocessorName *string `json:"preprocessorName,omitempty"`
RegAlpha *string `json:"regAlpha,omitempty"`
RegLambda *string `json:"regLambda,omitempty"`
Subsample *string `json:"subsample,omitempty"`
SubsampleFreq *string `json:"subsampleFreq,omitempty"`
TreeMethod *string `json:"treeMethod,omitempty"`
WithMean *string `json:"withMean,omitempty"`
WithStd *string `json:"withStd,omitempty"`
}