Git Product home page Git Product logo

Comments (2)

angus924 avatar angus924 commented on July 28, 2024

Hi @tdincer, great question. There's not necessarily any harm in doing that, but I would just make a couple of observations:

  • The number 84 comes from the fact that we use a fixed set of 84 convolutional kernels. By default, we apply each of these kernels with multiple dilation values, and then produce multiple features for each kernel/dilation combination, which is why the default number of features (10,000) is a lot more than 84.
  • Apriori, no particular kernel/dilation/etc is any 'better' or 'worse' than any other (i.e., a random subset of features is likely to work roughly as well as any other random subset of features).
  • However, in general you will usually find that the more features you use, the better the method will work. In other words, while any particular kernel is no better or worse than any other (without knowing more about the dataset), the features tend only to work well in aggregate. (So, if I had to guess, I would expect that the method will probably be fairly weak when using a very small number of features).
  • The way the code currently works, if you set the number of features to be 84, that means you are only using a single dilation for each kernel (in particular, a dilation of 1), and only producing a single feature for each kernel. This may not be an effective way of generating a small number of features. You may be better off generating a lot more than that (e.g., 1,000 or even the default 10,000), and then subsampling from this larger set. That way at least you will get a mixture of kernels/dilations/etc in your subsample.

I hope that helps!

Let me know if you have any further questions.

from minirocket.

tdincer avatar tdincer commented on July 28, 2024

@angus924 Thank you so much for the detailed answer! This is extremely helpful.

from minirocket.

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.