gating

Specifies how to gate a connection between two groups of multiple neurons. Gating makes the weights in networks more dynamic by adapting them to their gating node. Read more about it here. For specific implementations of gating, see Node, Group and Network

NOT YET IMPLEMENTED

Source:

Members

(static, constant) INPUT :object

Every node in the gating group will gate (at least) 1 node in the receiving group and all its connections from the other, emitting group

Type:
  • object
Example
      Copy
      let example = "TODO"
    
Source:
Default Value:
  • {
      "name": "INPUT"
    }

(static, constant) OUTPUT :object

Every node in the gating group will gate (at least) 1 node in the emitting group and all its connections to the other, receiving group

Type:
  • object
Example
      Copy
      let example = "TODO"
    
Source:
Default Value:
  • {
      "name": "OUTPUT"
    }

(static, constant) SELF :object

Every node in the gating group will gate (at least) 1 self connection in the emitting/receiving group

Type:
  • object
Example
      Copy
      let example = "TODO"
    
Source:
Default Value:
  • {
      "name": "SELF"
    }