Neural gas

Neural gas is an artificial neural network, inspired by the self-organizing map and introduced in 1991 by Thomas Martinetz and Klaus Schulten.[1] The neural gas is a simple algorithm for finding optimal data representations based on feature vectors. The algorithm was coined "neural gas" because of the dynamics of the feature vectors during the adaptation process, which distribute themselves like a gas within the data space. It is applied where data compression or vector quantization is an issue, for example speech recognition,[2] image processing[3] or pattern recognition. As a robustly converging alternative to the k-means clustering it is also used for cluster analysis.[4]

Algorithm

Suppose we want to model a probability distribution of data vectors using a finite number of feature vectors , where .

  1. For each time step
    1. Sample data vector from
    2. Compute the distance between and each feature vector. Rank the distances.
    3. Let be the index of the closest feature vector, the index of the second closest feature vector, and so on.
    4. Update each feature vector by:

In the algorithm, can be understood as the learning rate, and as the neighborhood range. and are reduced with increasing so that the algorithm converges after many adaptation steps.

The adaptation step of the neural gas can be interpreted as gradient descent on a cost function. By adapting not only the closest feature vector but all of them with a step size decreasing with increasing distance order, compared to (online) k-means clustering a much more robust convergence of the algorithm can be achieved. The neural gas model does not delete a node and also does not create new nodes.

Comparison with SOM

Compared to self-organized map, the neural gas model does not assume that some vectors are neighbors. If two vectors happen to be close together, they would tend to move together, and if two vectors happen to be apart, they would tend to not move together. In contrast, in an SOM, if two vectors are neighbors in the underlying graph, then they will always tend to move together, no matter whether the two vectors happen to be neighbors in the Euclidean space.

The name "neural gas" is because one can imagine it to be what an SOM would be like if there is no underlying graph, and all points are free to move without the bonds that bind them together.

Variants

A number of variants of the neural gas algorithm exists in the literature so as to mitigate some of its shortcomings. More notable is perhaps Bernd Fritzke's growing neural gas,[5] but also one should mention further elaborations such as the Growing When Required network[6] and also the incremental growing neural gas.[7] A performance-oriented approach that avoids the risk of overfitting is the Plastic Neural gas model.[8]

Growing neural gas

Fritzke describes the growing neural gas (GNG) as an incremental network model that learns topological relations by using a "Hebb-like learning rule",[5] only, unlike the neural gas, it has no parameters that change over time and it is capable of continuous learning, i.e. learning on data streams. GNG has been widely used in several domains,[9] demonstrating its capabilities for clustering data incrementally. The GNG is initialized with two randomly positioned nodes which are initially connected with a zero age edge and whose errors are set to 0. Since the in the GNG input data is presented sequentially one by one, the following steps are followed at each iteration:

  • It is calculated the errors (distances) between the two closest nodes to the current input data.
  • The error of the winner node (only the closest one) is respectively accumulated.
  • The winner node and its topological neighbors (connected by an edge) are moving towards the current input by different fractions of their respective errors.
  • The age of all edges connected to the winner node are incremented.
  • If the winner node and the second-winner are connected by an edge, such an edge is set to 0. Else, an edge is created between them.
  • If there are edges with an age larger than a threshold, they are removed. Nodes without connections are eliminated.
  • If the current iteration is an integer multiple of a predefined frequency-creation threshold, a new node is inserted between the node with the largest error (among all) and its topological neighbor presenting the highest error. The link between the former and the latter nodes is eliminated (their errors are decreased by a given factor) and the new node is connected to both of them. The error of the new node is initialized as the updated error of the node which had the largest error (among all).
  • The accumulated error of all nodes is decreased by a given factor.
  • If the stopping criterion is not met, the algorithm takes a following input. The criterion might be a given number of epochs, i.e., a pre-set number of times where all data is presented, or the reach of a maximum number of nodes.

Incremental growing neural gas

Another neural gas variant inspired in the GNG algorithm is the incremental growing neural gas (IGNG). The authors propose the main advantage of this algorithm to be "learning new data (plasticity) without degrading the previously trained network and forgetting the old input data (stability)."[7]

Growing when required

Having a network with a growing set of nodes, like the one implemented by the GNG algorithm was seen as a great advantage, however some limitation on the learning was seen by the introduction of the parameter λ, in which the network would only be able to grow when iterations were a multiple of this parameter.[6] The proposal to mitigate this problem was a new algorithm, the Growing When Required network (GWR), which would have the network grow more quickly, by adding nodes as quickly as possible whenever the network identified that the existing nodes would not describe the input well enough.

Plastic neural gas

The ability to only grow a network may quickly introduce overfitting; on the other hand, removing nodes on the basis of age only, as in the GNG model, does not ensure that the removed nodes are actually useless, because removal depends on a model parameter that should be carefully tuned to the "memory length" of the stream of input data.

The "Plastic Neural Gas" model[8] solves this problem by making decisions to add or remove nodes using an unsupervised version of cross-validation, which controls an equivalent notion of "generalization ability" for the unsupervised setting.

While growing-only methods only cater for the incremental learning scenario, the ability to grow and shrink is suited to the more general streaming data problem.

Implementations

To find the ranking of the feature vectors, the neural gas algorithm involves sorting, which is a procedure that does not lend itself easily to parallelization or implementation in analog hardware. However, implementations in both parallel software [10] and analog hardware[11] were actually designed.

References

  1. ^ Thomas Martinetz and Klaus Schulten (1991). "A "neural gas" network learns topologies" (PDF). Artificial Neural Networks. Elsevier. pp. 397–402.
  2. ^ F. Curatelli; O. Mayora-Iberra (2000). "Competitive learning methods for efficient Vector Quantizations in a speech recognition environment". In Osvaldo Cairó; L. Enrique Sucar; Francisco J. Cantú-Ortiz (eds.). MICAI 2000: Advances in artificial intelligence : Mexican International Conference on Artificial Intelligence, Acapulco, Mexico, April 2000 : proceedings. Springer. p. 109. ISBN 978-3-540-67354-5.
  3. ^ Angelopoulou, Anastassia; Psarrou, Alexandra; Garcia Rodriguez, Jose; Revett, Kenneth (2005). "Computer Vision for Biomedical Image Applications". In Yanxi Liu; Tianzi Jiang; Changshui Zhang (eds.). Computer vision for biomedical image applications: first international workshop, CVBIA 2005, Beijing, China, October 21, 2005 : proceedings. Lecture Notes in Computer Science. Vol. 3765. Springer. p. 210. doi:10.1007/11569541_22. ISBN 978-3-540-29411-5.
  4. ^ Fernando Canales; Max Chacon (2007). "Progress in Pattern Recognition, Image Analysis and Applications". In Luis Rueda; Domingo Mery (eds.). Progress in pattern recognition, image analysis and applications: 12th Iberoamerican Congress on Pattern Recognition, CIARP 2007, Viña del Mar-Valparaiso, Chile, November 13–16, 2007; proceedings. Lecture Notes in Computer Science. Vol. 4756. Springer. pp. 684–693. doi:10.1007/978-3-540-76725-1_71. ISBN 978-3-540-76724-4.
  5. ^ a b Fritzke, Bernd (1995). "A Growing Neural Gas Network Learns Topologies". Advances in Neural Information Processing Systems. 7: 625–632. Retrieved 2016-04-26.
  6. ^ a b Marsland, Stephen; Shapiro, Jonathan; Nehmzow, Ulrich (2002). "A self-organising network that grows when required". Neural Networks. 15 (8): 1041–1058. CiteSeerX 10.1.1.14.8763. doi:10.1016/s0893-6080(02)00078-3. PMID 12416693.
  7. ^ a b Prudent, Yann; Ennaji, Abdellatif (2005). "An incremental growing neural gas learns topologies". Proceedings. 2005 IEEE International Joint Conference on Neural Networks, 2005. Vol. 2. pp. 1211–1216. doi:10.1109/IJCNN.2005.1556026. ISBN 978-0-7803-9048-5. S2CID 41517545.
  8. ^ a b Ridella, Sandro; Rovetta, Stefano; Zunino, Rodolfo (1998). "Plastic algorithm for adaptive vector quantisation". Neural Computing & Applications. 7: 37–51. doi:10.1007/BF01413708. S2CID 1184174.
  9. ^ Iqbal, Hafsa; Campo, Damian; Baydoun, Mohamad; Marcenaro, Lucio; Martin, David; Regazzoni, Carlo (2019). "Clustering Optimization for Abnormality Detection in Semi-Autonomous Systems". 1st International Workshop on Multimodal Understanding and Learning for Embodied Applications. pp. 33–41. doi:10.1145/3347450.3357657. ISBN 978-1-4503-6918-3.
  10. ^ Ancona, Fabio; Rovetta, Stefano; Zunino, Rodolfo (1996). "A parallel approach to plastic neural gas". Proceedings of International Conference on Neural Networks (ICNN'96). Vol. 1. pp. 126–130. doi:10.1109/ICNN.1996.548878. ISBN 0-7803-3210-5. S2CID 61686854.
  11. ^ Ancona, Fabio; Rovetta, Stefano; Zunino, Rodolfo (1997). "Hardware implementation of the neural gas". Proceedings of International Conference on Neural Networks (ICNN'97). Vol. 2. pp. 991–994. doi:10.1109/ICNN.1997.616161. ISBN 0-7803-4122-8. S2CID 62480597.

Further reading

  • T. Martinetz, S. Berkovich, and K. Schulten. "Neural-gas" Network for Vector Quantization and its Application to Time-Series Prediction. IEEE-Transactions on Neural Networks, 4(4):558–569, 1993.
  • Martinetz, T.; Schulten, K. (1994). "Topology representing networks". Neural Networks. 7 (3): 507–522. doi:10.1016/0893-6080(94)90109-0.

Read other articles:

Negara Palestina Artikel ini adalah bagian dari seri Politik dan KetatanegaraanPalestina Jabatan yang statusnya disengketakan ditunjukkan dengan huruf miring Negara Anggota Liga Arab Pemerintahan Pemerintah Negara Palestina (Ramallah) Presiden: Mahmoud Abbasa Perdana Menteri: Mohammad Shtayyeh Pemerintah Hamas (Gaza) Simbol nasional Bendera Lagu kebangsaan Lambang Dewan Legislatif Dewan Nasional Palestina Dewan Legislatif Palestina Anggota saat ini Ketua Dewan Aziz Duwaik Pemilihan umum Pemil...

 

BalimbingNagariRumah Gadang Kampai Nan PanjangNegara IndonesiaProvinsiSumatera BaratKabupatenTanah DatarKecamatanRambatanKode Kemendagri13.04.03.2002 Luas2.422,00 HaJumlah penduduk8.917 Jiwa Balimbing merupakan salah satu Nagari yang termasuk ke dalam wilayah Kecamatan Rambatan, Kabupaten Tanah Datar, Provinsi Sumatera Barat, Indonesia. Nagari ini terletak di dekat Batusangkar, ibu kota dari kabupaten Tanah Datar. Sejarah Sejarah terbentuknya Nagari Balimbing dijelaskan oleh Datuk Rusli&...

 

H.Innayatullah Wakil Bupati Musi Rawas Utara ke-2PetahanaMulai menjabat 26 Februari 2021PresidenJoko WidodoGubernurHerman DeruBupatiDevi Suhartoni PendahuluDevi SuhartoniPenggantiPetahana Informasi pribadiLahir31 Januari 1976 (umur 48)Muara Rupit, Sumatera SelatanKebangsaanIndonesiaPartai politikNasDemSuami/istriDesi Tri AnggerainiAnak6Alma materSTAI Bumi Silampari LubuklinggauPekerjaanBirokrat, PolitikusSunting kotak info • L • B H. Innayatullah (lahir 31 Januari 1...

Adriana LimaLima pada Juli 2019LahirAdriana Franseca Lima12 Juni 1981 (umur 42)Salvador, Bahia, BrasilPekerjaanModelAktrisTahun aktif1997–sekarangSuami/istriMarko Jarić ​ ​(m. 2009; c. 2016)​Anak2Informasi modelingTinggi1,78 m (5 ft 10 in)[1][2]Warna rambutCokelat gelap[1][2]Warna mataBiru[1][2]Manajer Creative Artists Agency (New York, Los Angeles)[3] Elite Mod...

 

Questa voce sull'argomento cestisti statunitensi è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. Segui i suggerimenti del progetto di riferimento. A.J. Davis Nazionalità  Stati Uniti Altezza 198 cm Peso 95 kg Pallacanestro Ruolo Guardia / ala piccola Termine carriera 2020 CarrieraGiovanili Linden-McKinley High School2007-2008Harmony Community School2008-2010 Wyoming Cowboys2011-2013 JMU DukesSquadre di club 2013-2014 S. Falls Skyf...

 

У этого термина существуют и другие значения, см. Деньги (значения). Товарные деньги Товарные, вещественные, натуральные деньги; товаро-деньги, деньги-товары, денежные товары — разновидность денег, представляющая собой товары, то есть вещи, которые можно непосредствен�...

2011 Chinese martial art action film The ResistanceOfficial USA PosterDirected byPeng Zhang LiWritten byPeng Zhang LiScott TimminsStarringHu SangJeremy Marr WilliamsPeng Zhang Li Johan KarlbergZhao JiuyiZhang Xiao HuaProductioncompanyNingxia Film GroupRelease dates 10 November 2011 (2011-11-10) 17 May 2012 (2012-05-17) (Cannes film festival) Running time89 minutesCountryChinaLanguagesEnglishChinese Japanese The Resistance (Chinese: 反抗者; pinyin: ...

 

This article may need to be rewritten to comply with Wikipedia's quality standards. You can help. The talk page may contain suggestions. (August 2017) Intractable pain, also called intractable pain syndrome (IPS), is a severe, constant, relentless, and debilitating pain that is not curable by any known means and which causes a house-bound or bed-bound state and early death if not adequately treated, usually with opioids and/or interventional procedures. It is not relieved by ordinary medical,...

 

This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article uses bare URLs, which are uninformative and vulnerable to link rot. Please consider converting them to full citations to ensure the article remains verifiable and maintains a consistent citation style. Several templates and tools are available to assist in formatting, such as reFill (documentation) and Citation bot (documentatio...

The Third HalfSutradaraDarko MitrevskiProduserRobert Naskov, Darko MitrevskiSkenarioGrgur Strujic, Darko MitrevskiBerdasarkanPeristiwa Perang Dunia 2PemeranSasko KocevKatarina IvanovskaRichard SammelRade SherbedgiaEmil RubenMitko S. ApostolovskiPenata musikKiril DžajkovskiSinematograferKlaus FuxjagerPenyuntingDejan BoskovicPerusahaanproduksiKino Oko ProductionTanggal rilis 21 Mei 2012 (2012-05-21) (Cannes) 15 September 2012 (2012-09-15) (Festival Film Manaki Bersaudar...

 

Best of Both Worlds ConcertAlbum live / Album lagu tema karya Miley CyrusDirilis11 Maret 2008 (2008-03-11)GenrePop rockDurasi50:20Label Walt Disney Hollywood Hannah Montana Hannah Montana 2: Non-Stop Dance Party(2007) Best of Both Worlds Concert(2008) Hannah Montana Hits Remixed(2008) Kronologi Miley Cyrus Meet Miley Cyrus(2007) Best of Both Worlds Concert(2008) Breakout(2008) Best of Both Worlds Concert adalah album live soundtrack dari Hannah Montana & Miley Cyrus: Best of ...

 

Below is a list of notable hedge funds. Largest hedge fund firms Below are the 20 largest hedge funds in the world ranked by discretionary assets under management (AUM) as of mid-2022. Only assets in private funds following hedge fund strategies are counted. Some of these managers also manage public funds and offer non-hedge fund strategies. The data for this table comes from Pensions & Investments with data compiled as of June 2023.[1] Rank Firm Headquarters AUM as of June 2023(...

Erica irregularis Klasifikasi ilmiah Kerajaan: Plantae Klad: Tracheophyta Klad: Angiospermae Klad: Eudikotil Klad: Asterid Ordo: Ericales Famili: Ericaceae Genus: Erica Spesies: Erica irregularis Nama binomial Erica irregularisBenth. Erica irregularis adalah spesies tumbuhan yang tergolong ke dalam famili Ericaceae. Spesies ini juga merupakan bagian dari ordo Ericales. Spesies Erica irregularis sendiri merupakan bagian dari genus Erica.[1] Nama ilmiah dari spesies ini pertama kali di...

 

Species of beaked whale Sato's beaked whaleTemporal range: Middle Miocene to present, 11.5–0 Ma PreꞒ Ꞓ O S D C P T J K Pg N Illustration of Berardius minimus (black scale bar is 1 metre [3.3 ft]) Size compared to an average human Conservation status Near Threatened  (IUCN 3.1)[1] CITES Appendix I (CITES)[2] Scientific classification Domain: Eukaryota Kingdom: Animalia Phylum: Chordata Class: Mammalia Order: Artiodactyla Infraorder: Cetacea Family:...

 

Rimavská Sobota District in the Banská Bystrica region Stará Bašta (Hungarian: Óbást) is a village and municipality in the Rimavská Sobota District of the Banská Bystrica Region of southern Slovakia. External links http://www.statistics.sk/mosmis/eng/run.html vteMunicipalities of Rimavská Sobota District Hnúšťa Rimavská Sobota Tisovec Abovce Babinec Barca Bátka Belín Blhovce Bottovo Budikovany Cakov Čerenčany Čierny Potok Číž Dolné Zahorany Dražice Drienčany Drňa Dubn...

Cet article est une ébauche concernant la Bretagne et l’histoire. Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants. Chronologies Données clés 1914 1915 1916  1917  1918 1919 1920Décennies :1880 1890 1900  1910  1920 1930 1940Siècles :XVIIIe XIXe  XXe  XXIe XXIIeMillénaires :-Ier Ier  IIe  IIIe Chronologies géographiques Afrique Afrique du Sud, Algéri...

 

Disambiguazione – Se stai cercando altri significati, vedi Tattica (disambigua). Veicoli delle truppe parcheggiate in uno schema circolare, una tattica difensiva per soste di media lunghezza. Una tattica è un metodo utilizzato per conseguire degli obiettivi. Concettualmente si può parlare di tattica in vari campi: nella guerra (la tattica militare o, in mare, la tattica navale), in un duello, ma anche in economia, nel commercio, nello sport (ad esempio la tattica negli scacchi), nelle at...

 

This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages) A major contributor to this article appears to have a close connection with its subject. It may require cleanup to comply with Wikipedia's content policies, particularly neutral point of view. Please discuss further on the talk page. (October 2019) (Learn how and when to remove this message) This article needs additional citations for verification. P...

National foreign policy of the United States For bilateral relations, see Foreign relations of the United States. U.S. Foreign Policy redirects here. For the book by Walter Lippmann, see U.S. Foreign Policy (book). This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Foreign policy of the United States – news · newspapers · ...

 

Species of cartilaginous fish Aetobatus laticeps Conservation status Vulnerable  (IUCN 3.1)[1] Scientific classification Domain: Eukaryota Kingdom: Animalia Phylum: Chordata Class: Chondrichthyes Subclass: Elasmobranchii Superorder: Batoidea Order: Myliobatiformes Family: Aetobatidae Genus: Aetobatus Species: A. laticeps Binomial name Aetobatus laticeps(Gill, 1865) Aetobatus laticeps, the Pacific white-spotted eagle ray, is a species of cartilaginous fish in the eagle ray fa...