Code Monkey home page Code Monkey logo

Comments (3)

deepakn94 avatar deepakn94 commented on July 29, 2024

Seems like you are trying to profile your custom implementation of the ResNet model?
If this is the case, you want to patch the flatten method, similar to this: https://github.com/msr-fiddle/pipedream/blob/master/profiler/torchmodules/torchgraph/graph_creator.py#L157. This is to ensure that we can construct the computation DAG for the given model. At a high level, this method needs to unwrap the TensorWrapper object, call torch.flatten, then rewrap the result as a TensorWrapper object.

from pipedream.

gudiandian avatar gudiandian commented on July 29, 2024

I use my custom implementation of ResNet because of another error:

Traceback (most recent call last):
  File "main.py", line 596, in <module>
    main()
  File "main.py", line 287, in main
    verbose=args.verbose, device="cuda")
  File "../torchmodules/torchsummary/torchsummary.py", line 77, in summary
    model(*model_input)
  File "/root/anaconda3/lib/python3.7/site-packages/torch/nn/modules/module.py", line 574, in __call__
    result = self.forward(*input, **kwargs)
  File "/root/anaconda3/lib/python3.7/site-packages/torchvision/models/resnet.py", line 149, in forward
    x = self.avgpool(x)
  File "/root/anaconda3/lib/python3.7/site-packages/torch/nn/modules/module.py", line 574, in __call__
    result = self.forward(*input, **kwargs)
  File "/root/anaconda3/lib/python3.7/site-packages/torch/nn/modules/pooling.py", line 554, in forward
    self.padding, self.ceil_mode, self.count_include_pad, self.divisor_override)
RuntimeError: Given input size: (2048x1x1). Calculated output size: (2048x-5x-5). Output size is too small

It is said that this might be caught by wrong parameter of avgpool layer in torchvision.

Thanks for your suggestion! This worked for my situation. I will close this issue.

from pipedream.

deepakn94 avatar deepakn94 commented on July 29, 2024

Yup, that's correct -- you need to use a version of the VGG model that wraps tensors with TensorWrappers

from pipedream.

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.