HACKER Q&A
📣 siavosh

Best online AI training and model service like HuggingFace?


If I have a few hundred megabytes of tabular data that I want categorized into 2 classes with a probability score -- is there a good full service online tool that can fully abstract the AI/ML model picking and training and provide it via an API I can use to get scores for new rows? I'm looking at Hugging Face offerings but it seems very rough around the edges (ex. getting error messages with no actionable reasons on just uploading or training a model).


  👤 leobg Accepted Answer ✓
SimpleT5 Python library might be if help. Allows you to train a model basically on just a dataframe. Can probably run it on Google Colab for free, given that you just want to classify a few hundred megabytes of text data.

Also, there are zero shot categorizers like KeyBERT.

If you have no labels, running it through the ChatGPT API might be a low hanging fruit option also.