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

https://github.com/1ambda/jupyter-playground

Jupyter Notebooks for Data Exploit ๐Ÿ™‚
https://github.com/1ambda/jupyter-playground

jupyter keras notebook tensorflow text-analysis

Last synced: about 1 year ago
JSON representation

Jupyter Notebooks for Data Exploit ๐Ÿ™‚

Awesome Lists containing this project

README

          

# Jupyter Playground

## Notebooks

- [๊ณต๊ณต ๋ฐ์ดํ„ฐ - ์•„ํŒŒํŠธ ๋งค๋งค ์‹ค๊ฑฐ๋ž˜์ž๋ฃŒ ์ˆ˜์ง‘](https://github.com/1ambda/jupyter-playground/blob/master/exploration-pubilc-data-gov/crawl-apt-trade.ipynb)
- [๊ณต๊ณต ๋ฐ์ดํ„ฐ - ์•„ํŒŒํŠธ ์ „์›”์„ธ ์ž๋ฃŒ ์ˆ˜์ง‘](https://github.com/1ambda/jupyter-playground/blob/master/exploration-pubilc-data-gov/crawl-apt-rent.ipynb)
- [ํ†ต๊ณ„์ฒญ, ํ–‰์ •ํ‘œ์ค€์ฝ”๋“œ๊ด€๋ฆฌ ์‹œ์Šคํ…œ - ๋ฒ•์ •๋™, ํ–‰์ •๋™ ์ฝ”๋“œ ๋ฐ ๋งคํ•‘](https://github.com/1ambda/jupyter-playground/blob/master/exploration-pubilc-data-gov/district-code-crawl.ipynb)

## Environment

```bash
brew install graphviz

pyenv virtualenv 3.7.2 jupyter-playground
pyenv activate jupyter-playground

pip install JPype1-py3
pip install konlpy
pip install nltk

pip install matplotlib
pip install seaborn
pip install graphviz

pip install numpy
pip install sklearn
pip install gensim
pip install pandas

pip install beautifulsoup4

# pip install xgboost
pip install xgboost

# https://www.tensorflow.org/install
pip install tensorflow # 2.1

# https://pytorch.org/get-started/locally/
pip install torch torchvision

# https://jupyter.readthedocs.io/en/latest/install.html
pip install jupyter
pip install jupyterlab
pip install tqdm

jupyter labextension install @jupyter-widgets/jupyterlab-manager
jupyter labextension install jupyter-matplotlib

jupyter lab --port=8080 --ip=127.0.0.1
```