CREATE MODEL mindsdb.home_rentals_ludwig_modelFROM example_db (SELECT * FROM demo_data.home_rentals)PREDICT rental_priceUSINGengine='ludwig';
Check the status of the predictor. It may take a while to finish training:
Copy
Ask AI
SELECT * FROM mindsdb.models where name='home_rentals_ludwig_model';
Make a prediction. Note that for the time being Ludwig requires all input columns to be specified, an error will trigger if data for any of them is missing:
CREATE MODEL mindsdb.home_rentals_ludwig_modelFROM example_db (SELECT * FROM demo_data.home_rentals)PREDICT rental_priceUSINGengine='ludwig';
Check the status of the predictor. It may take a while to finish training:
Copy
Ask AI
SELECT * FROM mindsdb.models where name='home_rentals_ludwig_model';
Make a prediction. Note that for the time being Ludwig requires all input columns to be specified, an error will trigger if data for any of them is missing: