Coder Social home page Coder Social logo

Comments (3)

ranahanocka avatar ranahanocka commented on May 22, 2024

Hi @liangqianqian123 ,

It is called a "mesh union" in the code. Specifically, see union_groups line in __pool_side. This is defined in the Mesh_union class.

from meshcnn.

liangqianqian123 avatar liangqianqian123 commented on May 22, 2024

I want to know where is the change of edge feature, such as average operation of the edge features. Is it in the class MeshUnion "rebuild_features_average"?

`class MeshUnion:
def init(self, n, device=torch.device('cpu')):
self.__size = n
self.rebuild_features = self.rebuild_features_average
self.groups = torch.eye(n).to(device)

def union(self, source, target):
    self.groups[target, :] += self.groups[source, :]
  
def remove_group(self, index):
    return

def get_group(self, edge_key):
    return self.groups[edge_key, :]

def get_occurrences(self):
    return torch.sum(self.groups, 0)

def get_groups(self, tensor_mask):
    self.groups = torch.clamp(self.groups, 0, 1)
    return self.groups[tensor_mask, :]

def rebuild_features_average(self, features, mask, target_edges):
    self.prepare_groups(features, mask)
    fe = torch.matmul(features.squeeze(-1), self.groups)
    occurrences = torch.sum(self.groups, 0).expand(fe.shape)
    fe = fe / occurrences
    padding_b = target_edges - fe.shape[1]
    if padding_b > 0:
        padding_b = ConstantPad2d((0, padding_b, 0, 0), 0)
        fe = padding_b(fe)
    return fe

def prepare_groups(self, features, mask):
    tensor_mask = torch.from_numpy(mask)
    #tensor to numpy
    #   a.numpy()
    # numpy to tensor
    #   torch.from_numpy(a)
    self.groups = torch.clamp(self.groups[tensor_mask, :], 0, 1).transpose_(1, 0)
    padding_a = features.shape[1] - self.groups.shape[0]
    if padding_a > 0:
        padding_a = ConstantPad2d((0, 0, 0, padding_a), 0)
        self.groups = padding_a(self.groups)`

from meshcnn.

ranahanocka avatar ranahanocka commented on May 22, 2024

Is it in the class MeshUnion "rebuild_features_average"?

yep!

from meshcnn.

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.