Difference between revisions of "Hood Ubuntu TensorFlow Object Detection 20211218"

From wikidb
Jump to: navigation, search
(Resources)
(Extract)
Line 7: Line 7:
 
= Extract =
 
= Extract =
  
   mv ~/Downloads/ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8.tar.gz .
+
   $ mv ~/Downloads/ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8.tar.gz .
 +
 +
  $ tar -xf ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8.tar.gz
 +
 
 +
  $ sudo apt install tree
 +
 
 +
  $ tree ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8
 +
 +
        ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8
 +
        ├── checkpoint
 +
        │   ├── checkpoint
 +
        │   ├── ckpt-0.data-00000-of-00001
 +
        │   └── ckpt-0.index
 +
        ├── pipeline.config
 +
        └── saved_model
 +
            ├── saved_model.pb
 +
            └── variables
 +
                ├── variables.data-00000-of-00001
 +
                └── variables.index
 +
 
 +
        3 directories, 7 files

Revision as of 11:49, 28 December 2021

Resources

Extract

 $ mv ~/Downloads/ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8.tar.gz .

 $ tar -xf ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8.tar.gz 
 $ sudo apt install tree
 $ tree ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8

       ssd_mobilenet_v2_fpnlite_640x640_coco17_tpu-8
       ├── checkpoint
       │   ├── checkpoint
       │   ├── ckpt-0.data-00000-of-00001
       │   └── ckpt-0.index
       ├── pipeline.config
       └── saved_model
           ├── saved_model.pb
           └── variables
               ├── variables.data-00000-of-00001
               └── variables.index
       3 directories, 7 files