本文整理汇总了Golang中github.com/shuLhan/tabula.Claset.GetRow方法的典型用法代码示例。如果您正苦于以下问题:Golang Claset.GetRow方法的具体用法?Golang Claset.GetRow怎么用?Golang Claset.GetRow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/shuLhan/tabula.Claset
的用法示例。
在下文中一共展示了Claset.GetRow方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: main
func main() {
defer un(trace("smote"))
flag.Parse()
if len(flag.Args()) <= 0 {
usage()
os.Exit(1)
}
fcfg := flag.Arg(0)
// Parsing config file and parameter.
smote, e := createSmote(fcfg)
if e != nil {
panic(e)
}
// Get dataset.
dataset := tabula.Claset{}
_, e = dsv.SimpleRead(fcfg, &dataset)
if e != nil {
panic(e)
}
fmt.Println("[smote] Dataset:", &dataset)
row := dataset.GetRow(0)
fmt.Println("[smote] sample:", row)
e = runSmote(smote, &dataset)
if e != nil {
panic(e)
}
if !merge {
return
}
e = runMerge(smote, &dataset)
if e != nil {
panic(e)
}
}
示例2: test
func test() {
testset := tabula.Claset{}
_, e := dsv.SimpleRead(testCfg, &testset)
if e != nil {
panic(e)
}
fmt.Println(tag, "Test set:", &testset)
fmt.Println(tag, "Sample test set:", testset.GetRow(0))
predicts, cm, probs := crforest.ClassifySetByWeight(&testset, nil)
fmt.Println("[crf] Test set CM:", cm)
crforest.Performance(&testset, predicts, probs)
e = crforest.WritePerformance()
if e != nil {
panic(e)
}
}