kushalvyas / Bag-of-Visual-Words-Python

Implementing Bag of Visual words approach for object classification and detection
https://kushalvyas.github.io/BOV.html
MIT License
126 stars 68 forks source link

test_path and train_path arguments bugs #8

Closed WilliamYi96 closed 6 years ago

WilliamYi96 commented 6 years ago

File "Bag.py", in 140, 141: parser.add_argument('--train_path', action="store", dest="train_path", required=True) parser.add_argument('--test_path', action="store", dest="test_path", required=True) but in the instruction README.md file, it shows: python Bag.py --train_set images/train/ --test_set images/test/

Need to change 'python Bag.py --train_set images/train/ --test_set images/test/' to 'python Bag.py --train_path images/train/ --test_path images/test/' in README.md to make to work properly.

Thanks.