From 1060d41561be035e9167778b45ee200f8c3809ef Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.anjos@idiap.ch> Date: Fri, 1 Sep 2017 10:39:24 +0200 Subject: [PATCH] Add mlp trainer for watershed masker --- develop.cfg | 4 +++- requirements.txt | 9 +++++++-- setup.py | 1 + 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/develop.cfg b/develop.cfg index 586ec0d..34c27f2 100644 --- a/develop.cfg +++ b/develop.cfg @@ -30,12 +30,13 @@ develop = src/bob.extension src/bob.db.fv3d src/bob.learn.activation src/bob.learn.linear + src/bob.learn.mlp src/bob.learn.em src/bob.bio.base . ; options for bob.buildout -debug = true +debug = false verbose = true newest = false @@ -57,6 +58,7 @@ bob.db.putvein = git git@gitlab.idiap.ch:bob/bob.db.putvein bob.db.fv3d = git git@gitlab.idiap.ch:bob/bob.db.fv3d bob.learn.activation = git git@gitlab.idiap.ch:bob/bob.learn.activation bob.learn.linear = git git@gitlab.idiap.ch:bob/bob.learn.linear +bob.learn.mlp = git git@gitlab.idiap.ch:bob/bob.learn.mlp bob.learn.em = git git@gitlab.idiap.ch:bob/bob.learn.em bob.bio.base = git git@gitlab.idiap.ch:bob/bob.bio.base diff --git a/requirements.txt b/requirements.txt index e744995..e0618a9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,10 @@ setuptools numpy scipy pillow +schema +docopt +scikit-image +matplotlib bob.extension bob.core bob.io.base @@ -13,5 +17,6 @@ bob.db.utfvp bob.db.verafinger bob.db.putvein bob.db.fv3d -scikit-image -matplotlib +bob.learn.linear +bob.learn.activation +bob.learn.mlp diff --git a/setup.py b/setup.py index 7d32b8c..0bafd12 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ setup( 'compare_rois.py = bob.bio.vein.script.compare_rois:main', 'view_sample.py = bob.bio.vein.script.view_sample:main', 'blame.py = bob.bio.vein.script.blame:main', + 'markdet.py = bob.bio.vein.script.markdet:main', ] }, -- GitLab