Hi, I have just finished reading some of the main documentation and am fairly new to making apps.
I am trying to distribute an app that needs to load scikit-learn model weight files and use them for inference. The problem is that there are thousands of them and it’s quite heavy(over 3Gb).
My question is,
-
Is there a way where I can only return the results of the inference while storing the weight files in my local server? A user would upload a csv file into my app and all I need is to return the inference results.
The computation takes quite a time. -
I have to save the csv file uploaded to the app. Does streamlit support these functions?
Any advice would be of real help! thanks