Coder Social home page Coder Social logo

nnf_nll_loss - ignore_index about torch HOT 6 CLOSED

mlverse avatar mlverse commented on May 14, 2024
nnf_nll_loss - ignore_index

from torch.

Comments (6)

dfalbel avatar dfalbel commented on May 14, 2024

Yeah should be -100 follwing the pytorch impl:

def nll_loss(input, target, weight=None, size_average=None, ignore_index=-100,
             reduce=None, reduction='mean'):

from torch.

jwijffels avatar jwijffels commented on May 14, 2024

Yes. I tested that also but it said boom on my Windows machine

from torch.

jwijffels avatar jwijffels commented on May 14, 2024

What I meant to say is that this crashes my session at the call of cpp_torch_namespace_nll_loss_self_Tensor_target_Tensor

library(torch)
m = nn_log_softmax(dim=1)
input = torch_randn(3, 5, requires_grad=TRUE)
target = torch_tensor(c(1L, 0L, 4L))
input = m(input)
output = nnf_nll_loss(input, target, ignore_index=-100L)
output

while it should be calling https://github.com/mlverse/torch/blob/master/src/lantern/lantern.h#L1649

from torch.

dfalbel avatar dfalbel commented on May 14, 2024

ok, I'll take a look ASAP

from torch.

dfalbel avatar dfalbel commented on May 14, 2024

This works for me if I do:

target = torch_tensor(c(1L, 0L, 4L), dtype = torch_long())

I could consider making torch_long() the default dtype when converting from R integers to torch tensors. We did something similar for R doubles that are converted to Tensors with dtype = torch_float(). What do you think?

from torch.

jwijffels avatar jwijffels commented on May 14, 2024

Indeed, works with long instead of int. Don't know enough about the C API of lantern/libtorch to give advice. I don't mind specifyng that it is a long. Don't know currently if this impacts speed of anything.

from torch.

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.