Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make predictions based on historical data CSV file? #385

Open
marcelooliveira opened this issue Mar 4, 2024 · 2 comments
Open

Make predictions based on historical data CSV file? #385

marcelooliveira opened this issue Mar 4, 2024 · 2 comments
Labels

Comments

@marcelooliveira
Copy link

I'd appreciate some advice on a problem, since I don't have expertise in AI or Data Science.

I need to analyze historical data to build a forecasting model, using a CSV data set containing historical data. Then I need to predict future values based on a future date input by the user, using the historical time series present in the dataset.

I'd like to know the model that best suits my training. Does it make sense to base my training on LLama2 or Llama2 chat for this? If not, what's the best model to build upon? And how should I format my historical CSV file?

Thanks in advance!

@jeffxtang
Copy link
Contributor

Depending on the characteristics of your historical data, traditional ML models such as regressions, KNN and decision trees (you can use scikit-learn to quickly train and test with your data), or neural network models such as RNN and LSTM may be used. Other specialized time series forecasting models such as Prophet can also be used.

LLMs such as Llama 2 may also be used for the forecasting - e.g. see this repo.

@marcelooliveira
Copy link
Author

Hi @jeffxtang, that's nice, I'll look into llmtime repo, Thanks so much for the comprehensive answer!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants