roboflow / roboflow-100-benchmark

Code for replicating Roboflow 100 benchmark results and programmatically downloading benchmark datasets
https://www.rf100.org
MIT License
244 stars 23 forks source link

git submodule #26

Closed monajalal closed 1 year ago

monajalal commented 1 year ago

Thanks for great video tutorial. I want to use the PyTorch notebook in remote machine but git doesn't work and we have to use Azure DevOps suit. Could you please show the $ tree . for how you want these packages to be ordered in your roboflow-100-benchmark directory? If I know how the layout is, I can git clone them separately.

$ git submodule update --init --recursive
Submodule 'GLIP-benchmark/GLIP' (https://github.com/microsoft/GLIP) registered for path 'GLIP-benchmark/GLIP'
Submodule 'yolov5-benchmark/yolov5' (https://github.com/ultralytics/yolov5) registered for path 'yolov5-benchmark/yolov5'
Submodule 'yolov7-benchmark/yolov7' (https://github.com/WongKinYiu/yolov7) registered for path 'yolov7-benchmark/yolov7'
Cloning into '/data/roboflow-100-benchmark/GLIP-benchmark/GLIP'...
fatal: unable to access 'https://github.com/microsoft/GLIP/': gnutls_handshake() failed: Error in the pull function.
fatal: clone of 'https://github.com/microsoft/GLIP' into submodule path '/data/roboflow-100-benchmark/GLIP-benchmark/GLIP' failed
Failed to clone 'GLIP-benchmark/GLIP'. Retry scheduled
Cloning into '/data/roboflow-100-benchmark/yolov5-benchmark/yolov5'...
fatal: unable to access 'https://github.com/ultralytics/yolov5/': gnutls_handshake() failed: Error in the pull function.
fatal: clone of 'https://github.com/ultralytics/yolov5' into submodule path '/data/roboflow-100-benchmark/yolov5-benchmark/yolov5' failed
Failed to clone 'yolov5-benchmark/yolov5'. Retry scheduled
Cloning into '/data/roboflow-100-benchmark/yolov7-benchmark/yolov7'...
fatal: unable to access 'https://github.com/WongKinYiu/yolov7/': gnutls_handshake() failed: Error in the pull function.
fatal: clone of 'https://github.com/WongKinYiu/yolov7' into submodule path '/data/roboflow-100-benchmark/yolov7-benchmark/yolov7' failed
Failed to clone 'yolov7-benchmark/yolov7'. Retry scheduled
Cloning into '/data/roboflow-100-benchmark/GLIP-benchmark/GLIP'...
fatal: unable to access 'https://github.com/microsoft/GLIP/': gnutls_handshake() failed: Error in the pull function.
fatal: clone of 'https://github.com/microsoft/GLIP' into submodule path '/data/roboflow-100-benchmark/GLIP-benchmark/GLIP' failed
Failed to clone 'GLIP-benchmark/GLIP' a second time, aborting
monajalal commented 1 year ago

I think I was able to fix it. Please let me know if otherwise:

/data/roboflow-100-benchmark$ tree . -d
.
├── doc
│   └── images
│       └── grid
├── GLIP-benchmark
│   └── GLIP
│       ├── configs
│       │   ├── flickr
│       │   ├── lvis
│       │   ├── odinw_13
│       │   ├── odinw_35
│       │   └── pretrain
│       ├── docs
│       ├── knowledge
│       ├── maskrcnn_benchmark
│       │   ├── config
│       │   ├── csrc
│       │   │   ├── cpu
│       │   │   └── cuda
│       │   ├── data
│       │   │   ├── datasets
│       │   │   │   └── evaluation
│       │   │   │       ├── coco
│       │   │   │       ├── flickr
│       │   │   │       ├── lvis
│       │   │   │       ├── od_to_grounding
│       │   │   │       ├── vg
│       │   │   │       └── voc
│       │   │   ├── samplers
│       │   │   └── transforms
│       │   ├── engine
│       │   ├── layers
│       │   ├── modeling
│       │   │   ├── backbone
│       │   │   ├── detector
│       │   │   ├── language_backbone
│       │   │   ├── roi_heads
│       │   │   │   ├── box_head
│       │   │   │   ├── keypoint_head
│       │   │   │   └── mask_head
│       │   │   └── rpn
│       │   ├── solver
│       │   ├── structures
│       │   └── utils
│       ├── odinw
│       └── tools
│           └── cityscapes
├── metadata
├── notebooks
├── scripts
│   └── image
├── yolov5-benchmark
│   └── yolov5
│       ├── classify
│       ├── data
│       │   ├── hyps
│       │   ├── images
│       │   └── scripts
│       ├── models
│       │   ├── hub
│       │   └── segment
│       ├── segment
│       └── utils
│           ├── aws
│           ├── docker
│           ├── flask_rest_api
│           ├── google_app_engine
│           ├── loggers
│           │   ├── clearml
│           │   ├── comet
│           │   └── wandb
│           └── segment
└── yolov7-benchmark
    └── yolov7
        ├── cfg
        │   ├── baseline
        │   ├── deploy
        │   └── training
        ├── data
        ├── deploy
        │   └── triton-inference-server
        │       └── data
        ├── figure
        ├── inference
        │   └── images
        ├── models
        ├── paper
        ├── scripts
        ├── tools
        └── utils
            ├── aws
            ├── google_app_engine
            └── wandb_logging

92 directories