Giter Site home page Giter Site logo

Comments (8)

bigmb avatar bigmb commented on August 15, 2024

I have made my png from the MRI files.
There is a .py file called 2d from 3d in the repo.
Have a look at it.

from unet-segmentation-pytorch-nest-of-unets.

Halleyawoo avatar Halleyawoo commented on August 15, 2024

okay, thanks for your reply!

from unet-segmentation-pytorch-nest-of-unets.

Halleyawoo avatar Halleyawoo commented on August 15, 2024

please don't close it now, maybe I 'll have some problems lately.
lol
thank you!

from unet-segmentation-pytorch-nest-of-unets.

bigmb avatar bigmb commented on August 15, 2024

Sure. No problem. You can even write to me on [email protected].

from unet-segmentation-pytorch-nest-of-unets.

Halleyawoo avatar Halleyawoo commented on August 15, 2024

Hello!
I met a problem which says:

RuntimeError: output with shape [1, 96, 96] doesn't match the broadcast shape [3, 96, 96]

I referred to online tutorials, change the sentence :
transform = transforms.Compose([transforms.ToTensor(), transforms.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5])])

into another sentence :
transform = transforms.Compose([
transforms.ToTensor(),
transforms.Lambda(lambda x: x.repeat(3,1,1)),
transforms.Normalize(mean=(0.5, 0.5, 0.5), std=(0.5, 0.5, 0.5))
])

But it is still the same error. Could you tell me why?
Thx very much!

from unet-segmentation-pytorch-nest-of-unets.

bigmb avatar bigmb commented on August 15, 2024

Its probably because you are providing a 1D input to the expected 3D tensor.
try :
transform = transforms.Compose([transforms.ToTensor(), transforms.Normalize(mean=[0.5], std=[0.5])])

But what is your input to the transformation?

from unet-segmentation-pytorch-nest-of-unets.

bigmb avatar bigmb commented on August 15, 2024

What is the shape of the input given to datasets?
Can you share those details?

and the shape of the output of the 2d_from_3d file that you are creating?

from unet-segmentation-pytorch-nest-of-unets.

husheng876 avatar husheng876 commented on August 15, 2024

Its probably because you are providing a 1D input to the expected 3D tensor.
try :
transform = transforms.Compose([transforms.ToTensor(), transforms.Normalize(mean=[0.5], std=[0.5])])

But what is your input to the transformation?

i have tried this solution but didn't solve the problem.And my input data is RGB and mask is gray.

from unet-segmentation-pytorch-nest-of-unets.

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.