Guest User

Untitled

a guest
Sep 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. cd /Users/abrahammathew/Desktop/object_detection_cats/object_detection/
  2.  
  3. python3 export_inference_graph.py
  4. --input_type image_tensor
  5. --pipeline_config_path data/ssd_mobilenet_v1_pets.config
  6. --trained_checkpoint_prefix data/model.ckpt-997
  7. --output_directory object_detection_graph
  8.  
  9. from object_detection import exporter
  10. Traceback (most recent call last):
  11.  
  12. File "<ipython-input-20-0bc5d13491d6>", line 1, in <module>
  13. from object_detection import exporter
  14.  
  15. ImportError: cannot import name 'exporter'
  16.  
  17. os.chdir('/Users/abrahammathew/Desktop/object_detection_cats/object_detection')
  18.  
  19. import exporter ### THIS WORKS!!!!!
  20.  
  21. from object_detection import exporter
  22. Traceback (most recent call last):
  23.  
  24. File "<ipython-input-23-0bc5d13491d6>", line 1, in <module>
  25. from object_detection import exporter
  26.  
  27. ImportError: cannot import name 'exporter'
Add Comment
Please, Sign In to add comment