-
-
Save afaqueumer/b40e1565089ae18c56c91fa990538b4e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # Download generate_tfrecord.py | |
| tfrecord_url = | |
| wget.download(tfrecord_url, paths['scripts_path']) | |
| # Generate Records | |
| !python {files['tf_record_script']} -x {os.path.join(paths['image_path'], 'train')} -l {files['labelmap']} -o {os.path.join(paths['annotation_path'], 'train.record')} | |
| !python {files['tf_record_script']} -x {os.path.join(paths['image_path'], 'test')} -l {files['labelmap']} -o {os.path.join(paths['annotation_path'], 'test.record')} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment