this post was submitted on 22 Nov 2023
1 points (100.0% liked)
Machine Learning
1 readers
1 users here now
Community Rules:
- Be nice. No offensive behavior, insults or attacks: we encourage a diverse community in which members feel safe and have a voice.
- Make your post clear and comprehensive: posts that lack insight or effort will be removed. (ex: questions which are easily googled)
- Beginner or career related questions go elsewhere. This community is focused in discussion of research and new projects that advance the state-of-the-art.
- Limit self-promotion. Comments and posts should be first and foremost about topics of interest to ML observers and practitioners. Limited self-promotion is tolerated, but the sub is not here as merely a source for free advertisement. Such posts will be removed at the discretion of the mods.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Maybe I missed it, but how did they select which neurons should be used in each layer? Max values after the activation function? Something else? Did they just fix the number of neurons that should be used fixed? e.g., to 12? So just taking the max 12 values?
The output of each parent neuron is basically treated as logit. So no activation is necessary. At inference, the logits below zero correspond to the choice of one child node and logits above zero correspond to the choice of alternative child node. At their deepest model, there are 11 such consecutive choices to be made, a descent down the binary tree.
The specifics of training are discussed in the previous paper of the authors. All nodes are computed during training so there's no speed-up at this stage compared to vanilla dense layer.
The number of neurons that should be used is fixed in advance. Basically, it's determined by the shape of the tree in which neurons are organised.