-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update visualization.md #177
base: master
Are you sure you want to change the base?
Changes from 6 commits
641e16d
3f5eed8
edeabac
e70c57c
31a54c0
d6a6ac1
0d4dc5e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,21 @@ | |
|
||
케라스는(`graphviz`를 사용해서) 케라스 모델을 그래프로 그리기 위한 유틸리티 함수를 제공합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 그래프로 그리기 위한 유틸리티 함수 |
||
|
||
아래 예시는 모델의 그래프를 그려주고 그 결과를 파일로 저장합니다: | ||
아래 예시는 모델의 그래프를 그려주고 그 결과를 파일로 저장합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 아래는 모델의 그래프를 그리고 파일로 저장하는 예시입니다. |
||
```python | ||
from keras.utils import plot_model | ||
plot_model(model, to_file='model.png') | ||
``` | ||
|
||
`plot_model`은 네 가지 인자를 전달받습니다: | ||
`plot_model`은 네 가지 인자를 전달받습니다. | ||
|
||
- `show_shapes`(기본값은 `False`)는 결과의 형태을 그래프에 나타낼 것인지 조정합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 형태을 -> 형태를 |
||
- `show_layer_names`(기본값은 `True`)는 층의 이름을 그래프에 나타낼 것인지 조정합니다. | ||
- `expand_nested`(기본값은 `False`)는 중첩된 모델을 그래프상에서 클러스터로 확장할 것인지 조정합니다. | ||
- `dpi`(기본값은 96)는 이미지 dpi를 조정합니다. | ||
- `show_shapes`(기본값은 `False`)는 결과의 형태을 그래프에 나타낼 것인지 여부를 설정합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "여부를 설정합니다" -> "것인지를 설정합니다." |
||
- `show_layer_names`(기본값은 `True`)는 층의 이름을 그래프에 나타낼 것인지 여부를 설정합니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 층의 이름을 그래프에 나타낼 것인지 여부를 설정합니다. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 리뷰 감사합니다. 리뷰 내용 적용하였습니다! argument의 설명에서 '여부' 단어 삭제
예시에 대한 설명 수정
기타 수정
|
||
- `expand_nested`(기본값은 `False`)는 중첩된 모델을 그래프상에서 클러스터로 확장할 것인지 여부를 설정합니다. | ||
- `dpi`(기본값은 96)는 이미지 dpi를 설정합니다. | ||
|
||
또한 직접 `pydot.Graph`오브젝트를 만들어 사용할 수도 있습니다, | ||
예를들어 ipython notebook에 나타내자면 : | ||
또한 직접 `pydot.Graph`오브젝트를 만들어 사용할 수도 있습니다. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 오브젝트 -> 객체 |
||
아래는 IPython Notebook에서 나타낸 예시입니다. | ||
```python | ||
from IPython.display import SVG | ||
from keras.utils import model_to_dot | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
케라스는(
graphviz
를 사용해서)-> 케라스는
graphviz
를 통해괄호 없어도 될 것 같습니다!