Giter Club home page Giter Club logo

Comments (9)

tikboaHIT avatar tikboaHIT commented on July 27, 2024 9

I have implemented the visualization code here, can I submit a merge request?

from mae-pytorch.

avitrost avatar avitrost commented on July 27, 2024 2

Hi, I was wondering how to perform inference and run the full encoder-decoder network on a complete, unmasked image? In other words, after it is trained, how would I call the model such that it encodes a complete image with no masks, and then reconstructs the original image using the decoder?

from mae-pytorch.

pengzhiliang avatar pengzhiliang commented on July 27, 2024

Unfortunately, our current visualization code also has some bugs, I will try to solve it!

from mae-pytorch.

pengzhiliang avatar pengzhiliang commented on July 27, 2024

Of course. Thank you for your contributions.

And can you provide some visualization results here?

from mae-pytorch.

tikboaHIT avatar tikboaHIT commented on July 27, 2024

Of course, can you provide pre-trained models and test images? Because the current model is mainly based on a custom datset.

from mae-pytorch.

pengzhiliang avatar pengzhiliang commented on July 27, 2024

I have uploaded the weight to google drive, please see latest readme.txt.

from mae-pytorch.

pengzhiliang avatar pengzhiliang commented on July 27, 2024

Hello, @avitrost , maybe there are some bugs now when the mask is always 0.
But if you really want to observe the performance when MAE is used as a pure auto-encoder, you should have a change:
For the encoder:
you can directly let x_vis=x in this line.
And for the inputs to decoder:

x_vis = self.encoder_to_decoder(x_vis) # [B, N_vis, C_d]
B, N, C = x_vis.shape
expand_pos_embed = self.pos_embed.expand(B, -1, -1).type_as(x).to(x.device).clone().detach()
pos_emd_vis = expand_pos_embed[~mask].reshape(B, -1, C)
pos_emd_mask = expand_pos_embed[mask].reshape(B, -1, C)
x_full = torch.cat([x_vis + pos_emd_vis, self.mask_token + pos_emd_mask], dim=1)

x = self.decoder(x_full, pos_emd_mask.shape[1]) # [B, N_mask, 3 * 16 * 16]

It needs to be changed to:

x_vis = self.encoder_to_decoder(x_vis) # [B, N, C_d]
expand_pos_embed = self.pos_embed.expand(B, -1, -1).type_as(x).to(x.device).clone().detach()
x = self.decoder(x_vis+expand_pos_embed , x_vis.shape[1]) # [B, N, 3 * 16 * 16]

Maybe there will be some other bugs, you can have a debug.
Hope this can help you!

from mae-pytorch.

Pter61 avatar Pter61 commented on July 27, 2024
expand_pos_embed = self.pos_embed

Thank you for your contribution! I have a question about this change. Why this change does not update in the latest code?

from mae-pytorch.

mouxinyue1 avatar mouxinyue1 commented on July 27, 2024

Hello, I would like to ask if the weight file loaded visually is the pre-trained weight file or the fine-tuned weight file? Error when I load the fine-tuned weight file:
image

from mae-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.