object SphereGNG
- Alphabetic
- By Inheritance
- SphereGNG
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- final case class Config(pd: PD = PD.Uniform, epsilon: Double = 0.02, epsilon2: Double = 0.01, beta: Double = 0.001, alpha: Double = 0.001, lambda: Double = 1.0/100, utility: Double = 4.0, seed: Long = 0L, maxNodes0: Int = 1000, maxEdges0: Int = 6000, maxEdgeAge: Int = 80, maxNeighbors: Int = 10, observer: Observer = Observer.Dummy) extends Product with Serializable
Configuration of the algorithm.
Configuration of the algorithm.
- pd
probability distribution function
- epsilon
adaptation factor for 'winner' (factor of moving winner node towards pd-emitted position)
- epsilon2
adaptation factor for neighbours of 'winner' (factor of moving neighbour nodes towards pd-emitted position)
- beta
controls decay of errors and utilities (decay is
1.0 - beta)- alpha
controls decay of errors and utilities for winning nodes (when inserting a new node between them; decay is
1.0 - alpha)- lambda
probability of inserting a node (each step)
- utility
scaling factor such that a node is deleted when
utility * node-utility < max-error- seed
random number generator initial seed value
- maxNodes0
initial maximum number of nodes. note that when changing
maxNodeslater, the values are always clipped tomaxNodes0(there will never be more thanmaxNodes0nodes).
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(config: Config): SphereGNG
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object Config extends Serializable