You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
609 B
Python
27 lines
609 B
Python
FluidUMAP : FluidDataClient {
|
|
|
|
*new {|server,numDimensions = 2, numNeighbours = 15, minDist = 0.1, iterations = 200, learnRate = 0.1, batchSize = 50|
|
|
^super.new1(server,[
|
|
\numDimensions,numDimensions,
|
|
\numNeighbours, numNeighbours,
|
|
\minDist, minDist,
|
|
\iterations, iterations,
|
|
\learnRate, learnRate,
|
|
\batchSize, batchSize
|
|
])
|
|
}
|
|
|
|
|
|
fitTransform{|sourceDataSet, destDataSet, action|
|
|
this.prSendMsg(\fitTransform,
|
|
[sourceDataSet.asSymbol, destDataSet.asSymbol], action);
|
|
}
|
|
|
|
// not implemented
|
|
cols {|action|}
|
|
read{|filename,action|}
|
|
write{|filename,action|}
|
|
size { |action|}
|
|
|
|
}
|