Clean up this scratch space

This commit is contained in:
bt3gl 2022-03-23 16:19:51 +04:00
parent 1de1667900
commit ed0cead015
62 changed files with 39650 additions and 13 deletions

25
ml_notebooks/README.md Normal file
View file

@ -0,0 +1,25 @@
## Jupyter Notebooks
### Installing
Install any dependences for [Jupyter](http://jupyter.readthedocs.io/en/latest/install.html):
```shell
$ apt-get install build-essential python3-dev
$ pip install jupyter
```
### Running
On the notebook directory:
```shell
$ jupyter notebook
```
### Basics
* A notebook is made up of a number of cells with Python code. You can execute a cell by clicking on it and pressing ```Shift-Enter```.