-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (20 loc) · 888 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
actv_test:
ocamlbuild -cflags -w,-a -use-ocamlfind actv_test.byte && ./actv_test.byte
loss_test:
ocamlbuild -cflags -w,-a -use-ocamlfind loss_test.byte && ./loss_test.byte
layer_test:
ocamlbuild -cflags -w,-a -use-ocamlfind layer_test.byte && ./layer_test.byte
matrix_test:
ocamlbuild -cflags -w,-a -use-ocamlfind matrix_test.byte && ./matrix_test.byte
visualise:
ocamlbuild -cflags -w,-a -use-ocamlfind visualisation.byte && ./visualisation.byte
train_mnist:
ocamlbuild -cflags -w,-a -use-ocamlfind train_mnist.byte && ./train_mnist.byte
gui:
ocamlbuild -cflags -w,-a -use-ocamlfind matrix.cmo gui.byte && ./gui.byte
base:
ocamlbuild -cflags -w,-a -use-ocamlfind matrix.cmo layer.cmo model.cmo
compile:
ocamlbuild -cflags -w,-a -use-ocamlfind gui.cmo image.cmo actv.cmo loss.cmo layer.cmo model.cmo matrix.cmo load_mnist.cmo visualisation.cmo
clean:
ocamlbuild -clean