Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created September 15, 2018 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/ad4564ab5ca9a9d297511ed799ed7fe2 to your computer and use it in GitHub Desktop.
Save NMZivkovic/ad4564ab5ca9a9d297511ed799ed7fe2 to your computer and use it in GitHub Desktop.
var inputVector = new Vector();
inputVector.Add(2);
inputVector.Add(2);
var input = new Vector[10]
{
inputVector,
inputVector,
inputVector,
inputVector,
inputVector,
inputVector,
inputVector,
inputVector,
inputVector,
inputVector
};
var som = new SOMap(2, 2, inputVector.Count, 100, 0.5);
som.Train(input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment