-
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 backend.md [101-200] #222
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,7 +154,7 @@ keras.backend.epsilon() | |
``` | ||
|
||
|
||
수치 식에 사용되는 fuzz factor의 값을 반환합니다. | ||
수치 식에 사용되는 fuzz factor(엡실론의<sag>float</sag>값)을 반환합니다. | ||
|
||
__Returns__ | ||
|
||
|
@@ -181,7 +181,7 @@ keras.backend.set_epsilon(e) | |
|
||
__Arguments__ | ||
|
||
- __e__: float. New value of epsilon. | ||
- __e__: <sag>float</sag>, 엡실론의 새로운 값. | ||
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. 로 지정된 부분은 숫자 1 왼쪽에 있는 ' 처럼 생긴 기호로 바꾸어야 정상적으로 하이라이팅 되는 것 같습니다. 또한 현재 컨벤션은 쉼표 대신 마침표를 사용하여 |
||
|
||
__Example__ | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
fuzz factor는 '0으로 나누는 오류'를 방지하기 위해 더하는 작은 분모값입니다. 저 문장은 "백엔드 상에서 설정된 엡실론 값을 가져옵니다. 엡실론 값은 수치를 0으로 나누었을 때 발생하는 오류를 방지하기 위해 분모에 더하는 작은 부동소수점 값입니다. "정도로 풀어서 번역하시는 게 맞을 것 같습니다. 그리고 아래 Returns에서 A float는 "
float
값"으로 번역하셔도 될 것 같고요.