Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kevinarce/scikit-learn
- Owner: KevinArce
- License: mit
- Created: 2022-06-16T18:38:25.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T11:24:21.000Z (about 2 years ago)
- Last Synced: 2023-04-30T21:26:04.588Z (over 1 year ago)
- Topics: educative, github, gitkraken, learn, machine-learning, python, scikit-learn, student-vscode
- Language: Python
- Homepage:
- Size: 110 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
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/
│