Numpy-Neuron / opts.py
Jensen-holm's picture
working on making it just a flask app, got rid of the main.py stuff
31806c5
raw
history blame
188 Bytes
from neural_network.main import main as nn
from cluster.main import main as clust
options = {
"neural-network": nn,
"kmeans-clustering": clust,
"kmedoid-clustering": clust,
}