Views
No views yet
Height, Width, Depth, Genre0, 1)its-zion-18/Books-tabular-datasetbest_quality1from autogluon.tabular import TabularPredictor
2
3# Load the model (unzip first if using the .zip version)
4predictor = TabularPredictor.load('path_to_model')
5
6# Make prediction
7sample = {'Height': 9.0, 'Width': 6.0, 'Depth': 1.0, 'Genre': 0}
8prediction = predictor.predict(sample)
9print("Predicted page count:", int(prediction))