neuralnet-pytorch icon indicating copy to clipboard operation
neuralnet-pytorch copied to clipboard

A high level framework for general purpose neural networks in Pytorch.

Results 5 neuralnet-pytorch issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, I downloaded the latest code and want to use the emd loss. In extensions/dist_emd.py file, there is `import neuralnet_pytorch.ext as ext` in line 2. But where is the neuralnet_pytorch.ext?...

For both Chamfer loss and EMD loss I have batches of points clouds of different size. As it's not practical to use a batch size of 1, is it correct...

Hi I'm trying to use emd loss and I'm getting: `AttributeError: module 'neuralnet_pytorch.metrics' has no attribute 'emd_loss' ` My integration is simple: `import neuralnet_pytorch as nnt cost = nnt.metrics.emd_loss(x,y) `...

Hi, I met error "The size of tensor a (2048) must match the size of tensor b (4096) at non-singleton dimension 1" when I run the following code: points1 =...

Hi @justanhduc , I am very interested in your GraphX. It seems that your nnt mainly rewrite nn.sequential which need to add output_shape in each torch operation such as FC...