Skip to content
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

[caffegen] Minor doc fix #14269

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions compiler/caffegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
## How caffegen works

Some of commands in `caffegen` use standard input for reading data and standard output for exporting result.
In this case, we strongly recommand you to use pipe, not copy & paste the content of file itself.
In this case, we strongly recommend you to use pipe, not copy & paste the content of file itself.

Otherwise, `caffegen` use arguments to pass some directories.

## Supported command

Basically, caffgen command is used as `caffegen [COMMAND]` and there are four `COMMAND` types.
Basically, caffegen command is used as `caffegen [COMMAND]` and there are four `COMMAND` types:
- init : initialize parameters using prototxt.
- encode : make a binary file(caffemodel) using initialized data
- decode : decode a binary file(caffemodel) and reproduce the initialized data
- encode : make a binary file (caffemodel) using initialized data
- decode : decode a binary file (caffemodel) and reproduce the initialized data
- merge : copy the trained weights from a caffemodel into a prototxt file

## How to use each command
Expand Down