用法:
predict(gdf, cat_cols, cont_cols)
使用經過訓練的模型預測類別
- gdf:(
cudf.DataFrame
) - 具有分類 int16 特征列的預測輸入數據集 - cat_cols:- gdf 中的分類列名數組
- cont_col:- gdf 中的連續列名數組
- gdf:(
參數:
例子:
>>> cat_cols = ["1", "2", "3", "4", "5", "6", "7", "8", "9"] >>> cont_cols = ["10"] >>> ac.predict(X_test, cat_cols, cont_cols).to_array() 0 0 1 0 2 0 3 0 4 2 .. 8204 0 8205 4 8206 0 8207 3 8208 0 Length: 8209, dtype: int64
相關用法
- Python clx.analytics.asset_classification.AssetClassification.save_model用法及代碼示例
- Python clx.analytics.asset_classification.AssetClassification.load_model用法及代碼示例
- Python clx.analytics.asset_classification.AssetClassification.train_model用法及代碼示例
- Python clx.analytics.anomaly_detection.dbscan用法及代碼示例
- Python clx.analytics.loda.Loda.score用法及代碼示例
- Python clx.analytics.dga_detector.DGADetector.evaluate_model用法及代碼示例
- Python clx.analytics.dga_detector.DGADetector.predict用法及代碼示例
- Python clx.analytics.dga_detector.DGADetector.train_model用法及代碼示例
- Python clx.analytics.loda.Loda.explain用法及代碼示例
- Python clx.analytics.loda.Loda.fit用法及代碼示例
- Python clx.analytics.stats.rzscore用法及代碼示例
- Python clx.ip.is_ip用法及代碼示例
- Python clx.ip.hostmask用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_rescan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.url_report用法及代碼示例
- Python clx.ip.is_global用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.ipaddress_report用法及代碼示例
- Python clx.ip.ip_to_int用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.file_scan用法及代碼示例
- Python clx.osi.virus_total.VirusTotalClient.scan_big_file用法及代碼示例
注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 clx.analytics.asset_classification.AssetClassification.predict。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。