Skip to content

Files

Failed to load latest commit information.

Latest commit

 Cannot retrieve latest commit at this time.

History

History

benchmarks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Image Classification Benchmarks

Setup

  • Install octconv:

    • (Option 1) From pip:

      pip install octconv
      
    • (Option 2) Locally:

      pip install -e ..   
      
  • Install remaining requirements

      pip install -r requirements.txt
    

Training

Single GPU

python train.py -c configs/cifar10/oct-resnet20.yml --device cuda:0

Multi-GPU

NGPUS=4; python -m torch.distributed.launch --nproc_per_node ${NGPUS} train.py -c configs/cifar10/oct-resnet20.yml