Move Fast
- [Rookiss] echo2 2019.04.29
- Titanic Solution 2019.04.28
- Dev Setting for Docker and Using Library 2019.04.28
- [Rookiss] echo1 2019.04.28
[Rookiss] echo2
Titanic Solution
Dev Setting for Docker and Using Library
Docker: Anaconda/Jupyter + Tensorflow
[Host shell]
docker run -it -p 8888:8888 -v $(pwd):/notebooks continuumio/anaconda3 /bin/bash
[Container]
conda install -c conda-forge tensorflow
jupyter notebook --ip='0.0.0.0' --port=8888 --no-browser --allow-root
https://www.slipp.net/wiki/pages/viewpage.action?pageId=26640967
https://anaconda.org/conda-forge/tensorflow
* 주피터 노트북에서 테이블 만들 때 편리함
* 주피터 노트북에서 파이썬 모듈을 효율적으로 사용할 수 있게 해주는 API 이다. (영상이나 이미지를 올리는 것도 가능)
[Jupyter 실행 오류]
KeyError: 'allow_remote_access'
[Jupyter Notebook]
conda list | grep jupyter
Command Mode (press Esc to enable)
Enter |
enter edit mode |
Shift-Enter |
run cell, select below |
Ctrl-Enter |
run cell |
Alt-Enter |
run cell, insert below |
Y |
to code |
M |
to markdown |
R |
to raw |
1 |
to heading 1 |
2,3,4,5,6 |
to heading 2,3,4,5,6 |
Up/K |
select cell above |
Down/J |
select cell below |
A/B |
insert cell above/below |
X |
cut selected cell |
C |
copy selected cell |
Shift-V |
paste cell above |
V |
paste cell below |
Z |
undo last cell deletion |
D,D |
delete selected cell |
Shift-M |
merge cell below |
Ctrl-S |
Save and Checkpoint |
L |
toggle line numbers |
O |
toggle output |
Shift-O |
toggle output scrolling |
Esc |
close pager |
H |
show keyboard shortcut help dialog |
I,I |
interrupt kernel |
0,0 |
restart kernel |
Space |
scroll down |
Shift-Space |
scroll up |
Shift |
ignore |
Edit Mode (press Enter to enable)
Tab |
code completion or indent |
Shift-Tab |
tooltip |
Ctrl-] |
indent |
Ctrl-[ |
dedent |
Ctrl-A |
select all |
Ctrl-Z |
undo |
Ctrl-Shift-Z |
redo |
Ctrl-Y |
redo |
Ctrl-Home |
go to cell start |
Ctrl-Up |
go to cell start |
Ctrl-End |
go to cell end |
Ctrl-Down |
go to cell end |
Ctrl-Left |
go one word left |
Ctrl-Right |
go one word right |
Ctrl-Backspace |
delete word before |
Ctrl-Delete |
delete word after |
Esc |
command mode |
Ctrl-M |
command mode |
Shift-Enter |
run cell, select below |
Ctrl-Enter |
run cell |
Alt-Enter |
run cell, insert below |
Ctrl-Shift-Subtract |
split cell |
Ctrl-Shift-- |
split cell |
Ctrl-S |
Save and Checkpoint |
Up |
move cursor up or previous cell |
Down |
move cursor down or next cell |
Ctrl-/ |
toggle comment on current or selected lines |
[Tensorflow]
기계학습과 딥러닝에 사용되는 모듈
- Pandas - 데이터 로드하기, 인코딩 지정하기
- melt, concat, pivot, transpose 과 같은 reshape 기능
- groupby, pivot_table, info, describe, value_counts 등을 통한 데이터 요약과 분석 - Numpy - 데이터 타입에 대한 이해
- 기본적인 수치계산 활용 - ggplot(Plotnine) - Python으로 Data Visualization 하기
- grammar of graphics 문법에 대한 기본적인 이해
- barplot, pointplot, boxplot 등 기본적인 시각화 방법에 대한 이해 - Folium - OpenStreetMap을 통해 지도 데이터 활용하기
- 위경도 정보로 Marker, CircleMarker, GeoJSON을 활용하여 choropleth 그리기
'Machine Learning > Reference' 카테고리의 다른 글
Titanic Solution (0) | 2019.04.28 |
---|
[Rookiss] echo1