Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/s-rb/ml_usdrateprediction

Skillbox Python DataScience Intensive
https://github.com/s-rb/ml_usdrateprediction

Last synced: 24 days ago
JSON representation

Skillbox Python DataScience Intensive

Awesome Lists containing this project

README

        

# ML_UsdRatePrediction
Skillbox Python DataScience Intensive

![Python](https://img.shields.io/badge/-Python-05122A?style=flat&logo=Python&logoColor=fffffb) ![Pandas](https://img.shields.io/badge/-Pandas-05122A?style=flat&logo=Pandas) ![MathPlotLib](https://img.shields.io/badge/-MathPlotLib-05122A?style=flat&logo=MathPlotLib) ![Scikit-learn](https://img.shields.io/badge/-Scikit_learn-05122A?style=flat&logo=sklearn)

Skillbox DataScience training intensive "Predicting the dollar exchange rate" using Python.
Prediction is made based on historical data.
Libraries used:
- Pandas - for getting data from an Excel file,
- MathPlotLib for plotting.
- Scikit-learn (SKLearn) for algorithms/

The mean absolute error (mean_absolute_error from sklearn.metrics) was used for evaluation.

Algorithms:
- LinearRegression,
- KNeighborsRegressor,
- MLPRegressor,
- RandomForestRegressor,

Automation of parameter selection and cross-validation:
- GridSearchCV from sklearn.model_selection