Skip to content

Commit

Permalink
initSOM() default set to no normalisation!
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasdominik committed Nov 18, 2019
1 parent bf9333b commit 4b7e2ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

"""
initSOM(train, xdim, ydim = xdim; norm = :zscore, topol = :hexagonal,
initSOM(train, xdim, ydim = xdim; norm = :none, topol = :hexagonal,
toroidal = false)
Initialises a SOM.
Expand All @@ -19,7 +19,7 @@ Initialises a SOM.
- `toroidal`: optional flag; if true, the SOM is toroidal.
"""
function initSOM( train, xdim, ydim = xdim;
norm = :zscore, topol = :hexagonal, toroidal = false)
norm = :none, topol = :hexagonal, toroidal = false)

if typeof(train) == DataFrame
colNames = [String(x) for x in names(train)]
Expand Down

0 comments on commit 4b7e2ad

Please sign in to comment.