Git Product home page Git Product logo

Comments (4)

super233 avatar super233 commented on May 18, 2024

ProDA/calc_prototype.py

Lines 119 to 122 in 9ba80c7

s = feat_cls[n] * outputs_pred[n][t]
# if (torch.sum(outputs_pred[n][t] * labels_expanded[n][t]).item() < 30):
# continue
s = F.adaptive_avg_pool2d(s, 1) / scale_factor[n][t]

The network has two outputs which are feat and out, note that feat and out have the same shape. The process is as follows:

  1. Get pseudo labels by using argmax in out.
  2. For each class, select corresponding feat in pixel-level by pseudo labels, and then perfome F.adaptive_avg_pool2d in selected feat to get image-level features of each class.

from proda.

fabriziojpiva avatar fabriziojpiva commented on May 18, 2024
2\. For each class, select corresponding `feat` in pixel-level by pseudo labels, and then perfome `F.adaptive_avg_pool2d` in selected  `feat` to get image-level features of each class.

Why is it needed to perform adaptive average pooling? To my understanding, if I were to plot features I would do the following:

  1. Get pseudo labels by using argmax in out. The resulting tensor out_argmax has a shape of [batch_size, h, w], which I flatten out into a unidimensional vector called class_ids of size [N], where N=batch_size*h*w.
  2. Reshape the features feat to match the vector of class_ids: from a feature tensor of shape [batch_size, depth, h, w] to a new shape [N, depth]. Let's call the resulting reshaped tensor feats_r.
  3. Store class_ids from 1) and feats_r from 2) into a pandas dataframe. All the class ids and reshaped features are accumulated into a pandas dataframe df with depth + 1 columns, where the first depth columns are for the features and the last one for the class ids.
  4. Use UMAP to reduce all but the last column of df, and plot the resulting embeddings using the class ids for the corresponding color of each point.

from proda.

fabriziojpiva avatar fabriziojpiva commented on May 18, 2024

ProDA/calc_prototype.py

Lines 119 to 122 in 9ba80c7

s = feat_cls[n] * outputs_pred[n][t]
# if (torch.sum(outputs_pred[n][t] * labels_expanded[n][t]).item() < 30):
# continue
s = F.adaptive_avg_pool2d(s, 1) / scale_factor[n][t]

The network has two outputs which are feat and out, note that feat and out have the same shape. The process is as follows:

1. Get pseudo labels by using `argmax` in `out`.

2. For each class, select corresponding `feat` in pixel-level by pseudo labels, and then perfome `F.adaptive_avg_pool2d` in selected  `feat` to get image-level features of each class.

I just tried this approach, storing all these vectors s in a dataframe, and then reducing this dataframe to 2D representations using UMAP, but I obtained very dense clusters compared to the figures in the manuscript, where the point clouds look more sparse. Could you please provide more information about these feature representations:

  1. Are these features computed on the training split of Cityscapes?
  2. What parameters are used for UMAP (n_neighbors, etc.)?
  3. Are these feature vectors computed per batch or per image?

Would be glad to hear from you. Thanks!

from proda.

xylzjm avatar xylzjm commented on May 18, 2024

no reply, right?

from proda.

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.