You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
Hi,
I am looking for the code where i can predict multiclass classification.
I have trained code in m.net and predicting in python using nimbusml.
here is my sample code.
Hi,
I am looking for the code where i can predict multiclass classification.
I have trained code in m.net and predicting in python using nimbusml.
here is my sample code.
AirQualityClassification.zip
"
import pandas as pd
from nimbusml import Pipeline
p = Pipeline()
p.load_model("/dbfs/FileStore/tables/AirQualityClassification.zip")
ds = pd.read_csv('/dbfs/FileStore/tables/Testing_Data.csv')
score = p.predict(ds,y='Status',evaltype='multiclass')
"
Getting error: 'Could not apply a map over type 'String' to column 'Status' since it has type 'Double''
Testdata csv
Thanks in advance
The text was updated successfully, but these errors were encountered: