The schema in this data file must match the datasource : Amazon Machine Learning -


when create model (regression) using amazon machine learning, provide datasource schema. data source contains values along target attribute. data source splitted in 70-30 training , evaluation of model , still need target attribute values in it. data used training first , evaluation target attribute required, understand.

now come batch prediction part. in have provide datasource , understand schema have similar schema used train model, again target attribute required why values required in part not understand. if provide dataset similar schema , no data in target attribute gives me

 schema in data file must match datasource used create ml model ml-ksc8japcco0. ensure data file using matches schema structure. 

when use same schema same model values in target attribute works fine.

you needs provide batch values make prediction less field predict; example,

i used structure make de model , training, select seconds_taken target

serial,operator,station,phase,next_phase,seconds 123,jack,machine 1,phase 1,phase 2,230528 

the goal make prediction how many time gonna take pass first phase different values of operator , station, detect better performance on company.

select evaluation on machine learning dashboard

machine learning -> batch predictions -> create batch prediction

this structure make prediction:

serial,operator,station,phase,next_phase 123,benn,machine 1,phase 1,phase 2 123,jhon,machine 1,phase 1,phase 2 123,benn,machine 2,phase 1,phase 2 123,jhon,machine 2,phase 1,phase 2 

take care on titles, got same error if use structure

serial,operator,station,phase,next_phase,seconds 123,benn,machine 1,phase 1,phase 2 123,jhon,machine 1,phase 1,phase 2 123,benn,machine 2,phase 1,phase 2 123,jhon,machine 2,phase 1,phase 2 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -