How to deploy a tabular model

Hello All,

I am working on tabular model and would like deploy the model in render. I tried deploying the Image Classifier Model and it worked. For tabular it is different. how to send data to tabular model from frontend.

Thanks again for your help.

Regards,
Karthik

1 Like

Hi p.karthik15 hope you are having a fabulous day!

Here is a notebook Google Colab

it’s designed for

fastai2

but the principle is the same for fastai1.
You will need to convert the code to work with fastai1.

Hope this helps.

mrfabuluous1 :grinning: :grinning:

1 Like

I also have a v1 notebook here @mrfabulous1 :wink: https://github.com/muellerzr/Practical-Deep-Learning-For-Coders/blob/master/DeployingModels.ipynb

2 Likes

Thank You.

Thank You

Thank you for your good post.
However, I was also wondering if there are any methods that makes use of HTML forms, not by uploading CSV files.
Since tabular data has inputs that can be put by users, I thought it would be better to have some sort of form that accepts user’s inputs and outputs based on user’s input, which is better when testing individually.
Are there any notebooks that I can take reference? All the notebooks I can find in deploying is csv file uploads.