Giter VIP home page Giter VIP logo

Comments (6)

sovrasov avatar sovrasov commented on June 3, 2024

@DachunKai do you experience similar issue as in #117 ?

from flops-counter.pytorch.

DachunKai avatar DachunKai commented on June 3, 2024

@sovrasov I think my issue is not same as you mentioned. My bug information is:

Exception has occurred: TypeError
unsupported operand type(s) for //: 'NoneType' and 'int'
  File "./test_temp.py", line 24, in <module>
    as_strings=True, print_per_layer_stat=False)
TypeError: unsupported operand type(s) for //: 'NoneType' and 'int'

from flops-counter.pytorch.

DachunKai avatar DachunKai commented on June 3, 2024

@sovrasov The complete test_temp.py is:

import torch
import torch.nn as nn
from ptflops import get_model_complexity_info


class Siamese(nn.Module):
    def __init__(self):
        super(Siamese, self).__init__()
        self.conv1 = nn.Conv2d(1, 10, 3, 1)
        self.conv2 = nn.Conv2d(1, 10, 3, 1)

    def forward(self, x1, x2):
        return self.conv1(x1) + self.conv2(x2)

def prepare_input(resolution):
    x1 = torch.FloatTensor(1, *resolution)
    x2 = torch.FloatTensor(1, *resolution)
    return dict(x1 = x1), dict(x2 = x2)

if __name__ == '__main__':
    model = Siamese()
    flops, params = get_model_complexity_info(model, input_res=(1, 224, 224),
                                              input_constructor=prepare_input,
                                              as_strings=True, print_per_layer_stat=False)
    print('      - Flops:  ' + flops)
    print('      - Params: ' + params)

from flops-counter.pytorch.

sovrasov avatar sovrasov commented on June 3, 2024

@sovrasov I think my issue is not same as you mentioned. My bug information is:

Exception has occurred: TypeError
unsupported operand type(s) for //: 'NoneType' and 'int'
  File "./test_temp.py", line 24, in <module>
    as_strings=True, print_per_layer_stat=False)
TypeError: unsupported operand type(s) for //: 'NoneType' and 'int'

Then could you try ptflops==0.7.1.2 ?

from flops-counter.pytorch.

sovrasov avatar sovrasov commented on June 3, 2024

Please also change dict(x1 = x1), dict(x2 = x2) -> dict(x1 = x1, x2 = x2)

from flops-counter.pytorch.

DachunKai avatar DachunKai commented on June 3, 2024

Thanks, it solves the problem.

Please also change dict(x1 = x1), dict(x2 = x2) -> dict(x1 = x1, x2 = x2)

from flops-counter.pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.