8000 GitHub - pretidav/GrowingNeuralGas: GNG algorithm from "A Growing Neural Gas Network Learns Topologies" by Fritzke B.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

pretidav/GrowingNeuralGas

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GrowingNeuralGas

Growing Neural Gas algorithm from "A Growing Neural Gas Network Learns Topoligies" by Fritzke B.

Example usage:

from GNG.neuralgas import GraphNeuralGas
from example.distributions import Box, Circle, TiltedCircle, HypPar  #this is mimiking some data 

NG = GraphNeuralGas(
    distribution=HypPar(n=800),
    growing_rate=100,
    eps_b=0.2,
    eps_n=0.006,
    a_max=50,
    beta=0.995,
    alpha=0.5,
    plot_rate=500,
    figpath='./example/HypPar3d',
    gas_d=3,
    max_number=500,
    min_number=50,
    error_tolerance=1,
)
NG.evolve(steps=100000)

Examples

Circle My Image My Image

TwistedCircle3d My Image My Image

Surface3d My Image My Image

About

GNG algorithm from "A Growing Neural Gas Network Learns Topologies" by Fritzke B.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

0