princewang1994 / TextSnake.pytorch

A PyTorch implementation of ECCV2018 Paper: TextSnake: A Flexible Representation for Detecting Text of Arbitrary Shapes
https://arxiv.org/abs/1807.01544
MIT License
437 stars 92 forks source link

About the result of demo.py #21

Closed cryptolalia closed 5 years ago

cryptolalia commented 5 years ago

I managed to finish the demo.py, but I got the .txt result, how should I convert it to the corresponding image result display?I am sorry to trouble you again.

princewang1994 commented 5 years ago

Hi, @cryptolalia, after ruling demo.py you will .txt file in output/ and image result in vis/, if you pull the latest repo, I have changed visualization directory to vis/$(EXP_NAME)_test.

jun214384468 commented 5 years ago

I want to know what the exp_name should be set to.

princewang1994 commented 5 years ago

@jun214384468 exp_name is the name of one experiments (e.g. at one time you set lr=2e-4 and bs=64, you can set exp_name to lr2e-4_bs64) for identifying different hyper-parameter settings.

jun214384468 commented 5 years ago

@jun214384468 exp_name is the name of one experiments (e.g. at one time you set lr=2e-4 and bs=64, you can set exp_name to lr2e-4_bs64) for identifying different hyper-parameter settings.

Thank you!

jun214384468 commented 5 years ago

lr2e-4_bs64

Hello, if I want to train this parameter in pycharm, how should I assign it?

princewang1994 commented 5 years ago

Just set program argments in like this: 批注 2019-11-12 111057

jun214384468 commented 5 years ago

Thank you very much for your guidance.