Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kevinarce/scikit-learn

Machine learning project based on sklearn library.
https://github.com/kevinarce/scikit-learn

educative github gitkraken learn machine-learning python scikit-learn student-vscode

Last synced: 3 months ago
JSON representation

Machine learning project based on sklearn library.

Awesome Lists containing this project

README

        

# Scikit-Learn
Machine learning project based on sklearn library.
ML as a field of research concerning the development of mathematically optimized models using computer code, which learn or generalize from historical data to unlock useful insights and make predictions.
This Project is meant to provide snippets and comments on features of the Scikit-Learn library.

## Getting Started

To get a local copy up and running follow steps below.
### Requirements
* Python >= `3.10.5`
* Packages included in `requirements.txt` file
* (Anaconda for easy installation)

### Install dependencies

Create and activate virtual environment:
```sh
conda create -n yourenvname python=3.10.5
conda activate yourenvname
```

Install packages:
```sh
python -m pip install -r requirements.txt
```

## Folder Structure
```
Sklearn-Project/