Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glemaitre/jupyterlite_dsc
https://github.com/glemaitre/jupyterlite_dsc
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/glemaitre/jupyterlite_dsc
- Owner: glemaitre
- License: cc0-1.0
- Created: 2023-06-08T20:50:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-11T19:59:48.000Z (over 1 year ago)
- Last Synced: 2024-10-28T02:06:09.946Z (about 2 months ago)
- Language: Jupyter Notebook
- Homepage: https://glemaitre.github.io/jupyterlite_dsc/
- Size: 9.06 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Datascience starter course
[![lite-badge](https://jupyterlite.rtfd.io/en/latest/_static/badge.svg)](https://glemaitre.github.io/jupyterlite_dsc/)
## Curriculum
This lecture is focused on the following concepts:
1. Introduction the Python programming language;
2. Data wrangling using Pandas;
3. Applied mathematics using NumPy;
4. Understand linear models;
5. Understand tree-based algorithms;
6. Evaluate a machine-learning model;
7. Manage mixed data types in machine-learning pipeline;
8. Fine tuning model by hyper-parameters search.## Additional material:
Some intro slides: http://ogrisel.github.io/decks/2017_intro_sklearn
## Getting started
In case that you have any issues, you click on the binder link below
which will setup an online machine for you:[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/glemaitre/datascience_started_course/master)
[![lite-badge](https://jupyterlite.rtfd.io/en/latest/_static/badge.svg)](https://glemaitre.github.io/jupyterlite_dsc/)Alternatively you can create a new conda environment which will be called
`dsc` by default and whill contain all the packages required to run the
notebooks:``` bash
conda env create -f environment.yml
``````bash
conda activate dsc
cd path/to/datascience_started_course
jupyter notebook
```You can also update an existing `conda` environment:
``` bash
conda env update -f environment.yml
```## References
This material is inspired and reused part of the following materials:
* https://github.com/amueller/scipy-2018-sklearn
* https://github.com/lesteve/euroscipy-2019-scikit-learn-tutorial
* https://github.com/INRIA/scikit-learn-mooc