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

Fixed readme, and fixed the flag error, of - to _ #117

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ See the examples in training_samples/**
### Demo
If you've downloaded the pre-trained model, you can setup a demo server by
```
python3 run_demo_server.py --checkpoint-path /tmp/east_icdar2015_resnet_v1_50_rbox/
python3 run_demo_server.py --checkpoint_path /tmp/east_icdar2015_resnet_v1_50_rbox/
```
Then open http://localhost:8769 for the web demo. Notice that the URL will change after you submitted an image.
Something like `?r=49647854-7ac2-11e7-8bb7-80000210fe80` appends and that makes the URL persistent.
Expand Down
2 changes: 1 addition & 1 deletion run_demo_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def main():
global checkpoint_path
parser = argparse.ArgumentParser()
parser.add_argument('--port', default=8769, type=int)
parser.add_argument('--checkpoint-path', default=checkpoint_path)
parser.add_argument('--checkpoint_path', default=checkpoint_path)
parser.add_argument('--debug', action='store_true')
args = parser.parse_args()
checkpoint_path = args.checkpoint_path
Expand Down