Skip to main content

A tool to count the FLOPs of PyTorch model.

Project description

THOP: PyTorch-OpCounter

How to install

  • Through PyPi

    pip install thop

  • Using GitHub (always latest)

    pip install --upgrade git+https://github.com/Lyken17/pytorch-OpCounter.git

How to use

  • Basic usage

    from torchvision.models import resnet50
    from thop import profile
    model = resnet50()
    input = torch.randn(1, 3, 224, 224)
    flops, params = profile(model, inputs=(input, ))
    
  • Define the rule for 3rd party module.

    class YourModule(nn.Module):
        # your definition
    def count_your_model(model, x, y):
        # your rule here
    
    input = torch.randn(1, 3, 224, 224)
    flops, params = profile(model, inputs=(input, ), 
                            custom_ops={YourModule: count_your_model})
    
  • Improve the output readability

    Call thop.clever_format to give a better format of the output.

    from thop import clever_format
    flops, params = clever_format([flops, params], "%.3f")
    

Results on Recent Models

Model Params(M) FLOPs(G)
alexnet 58.27 0.77
densenet121 7.61 2.71
densenet161 27.35 7.34
densenet169 13.49 3.22
densenet201 19.09 4.11
resnet101 42.49 7.34
resnet152 57.40 10.82
resnet18 11.15 1.70
resnet34 20.79 3.43
resnet50 24.37 3.86
Model Params(M) FLOPs(G)
squeezenet1_0 1.19 1.01
squeezenet1_1 1.18 0.48
vgg11 126.71 7.98
vgg11_bn 126.71 8.01
vgg13 126.88 11.82
vgg13_bn 126.89 11.86
vgg16 131.95 16.12
vgg16_bn 131.96 16.17
vgg19 137.01 20.43
vgg19_bn 137.02 20.49

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thop-0.0.23-1908021522.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

thop-0.0.23.post1908021522-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file thop-0.0.23-1908021522.tar.gz.

File metadata

  • Download URL: thop-0.0.23-1908021522.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for thop-0.0.23-1908021522.tar.gz
Algorithm Hash digest
SHA256 4d56ca7aa9493be06e7140708dba93f4501a01db6713fccf0088cd449a1d0882
MD5 3f2360a1b34fbf4dd82b6774a116dc8a
BLAKE2b-256 3896623285be3be6743dd41be3a9ddaecf3bf2c6cc4d1542f5795243136e5de0

See more details on using hashes here.

File details

Details for the file thop-0.0.23.post1908021522-py3-none-any.whl.

File metadata

  • Download URL: thop-0.0.23.post1908021522-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.21.0 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.26.0 CPython/3.6.5

File hashes

Hashes for thop-0.0.23.post1908021522-py3-none-any.whl
Algorithm Hash digest
SHA256 93f124e2e97aa1866857593369c0d3fdf2ca0bbbb99249b756d847b42000498a
MD5 c094e452a333529776deab3bc5db205e
BLAKE2b-256 ccbe23c479c33d4e850e421eb4a5951ac0644dc8c55f6820b3a1b50bff4c90a8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page