aboutsummaryrefslogtreecommitdiff
path: root/src/ann_mlp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ann_mlp.c')
-rwxr-xr-xsrc/ann_mlp.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/ann_mlp.c b/src/ann_mlp.c
index 64ce75f..6c0c2b8 100755
--- a/src/ann_mlp.c
+++ b/src/ann_mlp.c
@@ -508,13 +508,6 @@ static void *ann_mlp_new(t_symbol *s, int argc, t_atom *argv)
ann_mlp_load_ann_from_file(x, NULL , 0, NULL);
}
- post("");
- post("ann_mlp: neural nets for PD");
- post("version: "VERSION"");
- post("compiled: "__DATE__);
- post("author: Davide Morelli");
- post("contact: info@davidemorelli.it www.davidemorelli.it");
-
return (void *)x;
}
@@ -527,6 +520,12 @@ static void ann_mlp_free(t_ann_mlp *x)
}
void ann_mlp_setup(void) {
+ post("");
+ post("ann_mlp: multilayer perceptron for PD");
+ post("version: "VERSION"");
+ post("compiled: "__DATE__);
+ post("author: Davide Morelli");
+ post("contact: info@davidemorelli.it www.davidemorelli.it");
ann_mlp_class = class_new(gensym("ann_mlp"),
(t_newmethod)ann_mlp_new,