Coder Social home page Coder Social logo

labelnoisemoit's People

Contributors

diegoortego avatar ericarazo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

labelnoisemoit's Issues

Self-contrast set to -1

We need to remove the cosine between themselves, so the authors used the code

dist[torch.arange(dist.size()[0]), torch.arange(dist.size()[0])] = -1 ##Self-contrast set to -1
.
There may be a mistake that the elements of first dist.size()[0] at dim 1 are always set to -1, since the features are from a minibatch. The right way is:

dist = torch.mm(features, trainFeatures) # instead of features here
dist[torch.arange(dist.size()[0]), index] = -1  ##Self-contrast set to -1

Could you share your details on controlled web noise in mini-imagenet?

Thanks so much for your interesting work! But I can not get the same results in your paper on web noise Mini-imagenet (I have set the same hyperparameters). For red_noise_nl_0.4, I can only get 46.24 (Top-1 Accuracy of MOIT, not MOIT+). The results of other settings and the results in the paper are also very different (lower than the results in the paper). Below are the augmentations I adopted:

transforms.RandomCrop(84, padding=8),
transforms.ColorJitter(brightness=0.4, contrast=0.4, saturation=0.4),
transforms.RandomHorizontalFlip(),
transforms.ToTensor(),
transforms.Normalize((0.495, 0.477, 0.436), (0.292, 0.285, 0.299))

And the data of Mini-imagenet is downloaded from this URL: https://storage.googleapis.com/cnlw/dataset.zip (it is provided in LJY-HY/MentorMix_pytorch#1, which is the repo of controlled web noise in Mini-imagenet). I use the red-noise split files to get the training dataset.

If there are any other details, could you share them? Thanks again!

How to determine when the useful feature is learnt?

Hi,

Thanks for sharing the code! I have a question about how to decide the useful feature is learnt. For example, when training on cifar-10, the first 130 epochs are only trained with given label without noise correction. How to decide the "130 epochs"?

tabular data/ noisy instances

Hi,
thanks for sharing your implementation. I have two questions about it:

  1. Does it also work on tabular data?
  2. Is it possible to identify the noisy instances (return the noisy IDs or the clean set).

Thanks!

Problem about paper

Thanks so much for your work. I found that in table.6 and 7 of paper, the reported number from dividemix are much lower than the original paper, any ideas for this?

Could you share the Code on mini-WebVision dataset?

Hi,thanks for your interesting work! As the paper reported, MOIT performs much better than other SOTAs on mini-WebVision dataset. Could you share the code on mini-WebVision dataset? That's will help me a lot!

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.