├── .gitignore ├── .ocamlformat ├── .travis.yml ├── README.md ├── docs ├── highlight.pack.js ├── index.html ├── odoc.css ├── owl-opt-lbfgs │ ├── Owl_opt_lbfgs │ │ ├── .dune-keep │ │ └── index.html │ ├── Owl_opt_lbfgs__ │ │ ├── .dune-keep │ │ ├── Bindings │ │ │ └── index.html │ │ ├── Lbfgs │ │ │ ├── Make │ │ │ │ ├── argument-2-Cast │ │ │ │ │ └── index.html │ │ │ │ ├── argument-3-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── module-type-Cast │ │ │ │ └── index.html │ │ ├── Lbfgs_d │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Lbfgs_intf │ │ │ ├── index.html │ │ │ └── module-type-Sig │ │ │ │ └── index.html │ │ ├── Lbfgs_s │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt_lbfgs__Bindings │ │ ├── .dune-keep │ │ └── index.html │ ├── Owl_opt_lbfgs__Lbfgs │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-2-Cast │ │ │ │ └── index.html │ │ │ ├── argument-3-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── index.html │ │ └── module-type-Cast │ │ │ └── index.html │ ├── Owl_opt_lbfgs__Lbfgs_d │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt_lbfgs__Lbfgs_intf │ │ ├── .dune-keep │ │ ├── index.html │ │ └── module-type-Sig │ │ │ └── index.html │ ├── Owl_opt_lbfgs__Lbfgs_s │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ └── index.html ├── owl-opt │ ├── Owl_opt │ │ ├── .dune-keep │ │ ├── D │ │ │ └── index.html │ │ ├── Lr │ │ │ └── index.html │ │ ├── Prms │ │ │ ├── Pair │ │ │ │ └── index.html │ │ │ ├── Single │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── module-type-PT │ │ │ │ └── index.html │ │ ├── S │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__ │ │ ├── .dune-keep │ │ ├── Adam │ │ │ ├── Make │ │ │ │ ├── argument-2-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Adam_d │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Adam_intf │ │ │ ├── index.html │ │ │ └── module-type-Sig │ │ │ │ └── index.html │ │ ├── Adam_s │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Gd │ │ │ ├── Make │ │ │ │ ├── argument-2-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Gd_d │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Gd_intf │ │ │ ├── index.html │ │ │ └── module-type-Sig │ │ │ │ └── index.html │ │ ├── Gd_s │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Lr │ │ │ └── index.html │ │ ├── Prms │ │ │ ├── Pair │ │ │ │ └── index.html │ │ │ ├── Single │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ └── module-type-PT │ │ │ │ └── index.html │ │ ├── Rmsprop │ │ │ ├── Make │ │ │ │ ├── argument-2-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Rmsprop_d │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Rmsprop_intf │ │ │ ├── index.html │ │ │ └── module-type-Sig │ │ │ │ └── index.html │ │ ├── Rmsprop_s │ │ │ ├── Make │ │ │ │ ├── argument-1-P │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── Status │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Adam │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-2-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Adam_d │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Adam_intf │ │ ├── .dune-keep │ │ ├── index.html │ │ └── module-type-Sig │ │ │ └── index.html │ ├── Owl_opt__Adam_s │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Gd │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-2-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Gd_d │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Gd_intf │ │ ├── .dune-keep │ │ ├── index.html │ │ └── module-type-Sig │ │ │ └── index.html │ ├── Owl_opt__Gd_s │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Lr │ │ ├── .dune-keep │ │ └── index.html │ ├── Owl_opt__Prms │ │ ├── .dune-keep │ │ ├── Pair │ │ │ └── index.html │ │ ├── Single │ │ │ └── index.html │ │ ├── index.html │ │ └── module-type-PT │ │ │ └── index.html │ ├── Owl_opt__Rmsprop │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-2-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Rmsprop_d │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Rmsprop_intf │ │ ├── .dune-keep │ │ ├── index.html │ │ └── module-type-Sig │ │ │ └── index.html │ ├── Owl_opt__Rmsprop_s │ │ ├── .dune-keep │ │ ├── Make │ │ │ ├── argument-1-P │ │ │ │ └── index.html │ │ │ └── index.html │ │ └── index.html │ ├── Owl_opt__Status │ │ ├── .dune-keep │ │ └── index.html │ └── index.html └── ppx-owl-opt │ ├── Ppx_owl_opt │ ├── .dune-keep │ └── index.html │ └── index.html ├── dune ├── dune-project ├── examples ├── lbfgs │ ├── doc.ml │ ├── dune │ ├── regression_d.ml │ └── regression_s.ml ├── opt │ ├── adam.ml │ ├── doc.ml │ ├── dune │ ├── gd.ml │ ├── pair.ml │ ├── readme.ml │ ├── rmsprop.ml │ └── single.ml └── ppx │ ├── dune │ └── test.ml ├── owl-opt-lbfgs.opam ├── owl-opt.opam ├── ppx-owl-opt.opam └── src ├── lbfgs ├── bindings.ml ├── bindings.mli ├── dune ├── f2c.h ├── index.mld ├── lbfgs.ml ├── lbfgs_d.ml ├── lbfgs_d.mli ├── lbfgs_intf.ml ├── lbfgs_s.ml ├── lbfgs_s.mli ├── lbfgs_stubs.c ├── mdx │ └── dune └── owl_opt_lbfgs.ml ├── opt ├── adam │ ├── adam.ml │ ├── adam.mli │ ├── adam_d.ml │ ├── adam_d.mli │ ├── adam_intf.ml │ ├── adam_s.ml │ └── adam_s.mli ├── dune ├── gd │ ├── gd.ml │ ├── gd.mli │ ├── gd_d.ml │ ├── gd_d.mli │ ├── gd_intf.ml │ ├── gd_s.ml │ └── gd_s.mli ├── index.mld ├── lr.ml ├── mdx │ └── dune ├── owl_opt.ml ├── prms.ml ├── prms.mli ├── rmsprop │ ├── rmsprop.ml │ ├── rmsprop.mli │ ├── rmsprop_d.ml │ ├── rmsprop_d.mli │ ├── rmsprop_intf.ml │ ├── rmsprop_s.ml │ └── rmsprop_s.mli └── status.ml └── ppx ├── dune └── ppx_owl_opt.ml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/.gitignore -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/.ocamlformat -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/README.md -------------------------------------------------------------------------------- /docs/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/highlight.pack.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/odoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/odoc.css -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Bindings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Bindings/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/argument-2-Cast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/argument-2-Cast/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/argument-3-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/argument-3-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/module-type-Cast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs/module-type-Cast/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/Lbfgs_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Bindings/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Bindings/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Bindings/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/argument-2-Cast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/argument-2-Cast/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/argument-3-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/argument-3-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/module-type-Cast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs/module-type-Cast/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_intf/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/Owl_opt_lbfgs__Lbfgs_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt-lbfgs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt-lbfgs/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/D/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/D/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/Lr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/Lr/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/Prms/Pair/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/Prms/Pair/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/Prms/Single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/Prms/Single/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/Prms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/Prms/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/Prms/module-type-PT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/Prms/module-type-PT/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/S/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/S/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Adam_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Adam_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Gd_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Gd_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Lr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Lr/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Prms/Pair/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Prms/Pair/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Prms/Single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Prms/Single/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Prms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Prms/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Prms/module-type-PT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Prms/module-type-PT/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Rmsprop_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Rmsprop_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/Status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/Status/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_d/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_intf/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_s/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Adam_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Adam_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_d/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_intf/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_s/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Gd_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Gd_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Lr/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Lr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Lr/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Prms/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Prms/Pair/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Prms/Pair/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Prms/Single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Prms/Single/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Prms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Prms/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Prms/module-type-PT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Prms/module-type-PT/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop/Make/argument-2-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop/Make/argument-2-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_d/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_d/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_d/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_d/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_d/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_d/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_d/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_intf/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_intf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_intf/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_intf/module-type-Sig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_intf/module-type-Sig/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_s/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_s/Make/argument-1-P/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_s/Make/argument-1-P/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_s/Make/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_s/Make/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Rmsprop_s/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Rmsprop_s/index.html -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Status/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/owl-opt/Owl_opt__Status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/Owl_opt__Status/index.html -------------------------------------------------------------------------------- /docs/owl-opt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/owl-opt/index.html -------------------------------------------------------------------------------- /docs/ppx-owl-opt/Ppx_owl_opt/.dune-keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/ppx-owl-opt/Ppx_owl_opt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/ppx-owl-opt/Ppx_owl_opt/index.html -------------------------------------------------------------------------------- /docs/ppx-owl-opt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/docs/ppx-owl-opt/index.html -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | (mdx) 2 | -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- 1 | (lang dune 2.4) 2 | (using mdx 0.1) 3 | -------------------------------------------------------------------------------- /examples/lbfgs/doc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/lbfgs/doc.ml -------------------------------------------------------------------------------- /examples/lbfgs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/lbfgs/dune -------------------------------------------------------------------------------- /examples/lbfgs/regression_d.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/lbfgs/regression_d.ml -------------------------------------------------------------------------------- /examples/lbfgs/regression_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/lbfgs/regression_s.ml -------------------------------------------------------------------------------- /examples/opt/adam.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/adam.ml -------------------------------------------------------------------------------- /examples/opt/doc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/doc.ml -------------------------------------------------------------------------------- /examples/opt/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/dune -------------------------------------------------------------------------------- /examples/opt/gd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/gd.ml -------------------------------------------------------------------------------- /examples/opt/pair.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/pair.ml -------------------------------------------------------------------------------- /examples/opt/readme.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/readme.ml -------------------------------------------------------------------------------- /examples/opt/rmsprop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/rmsprop.ml -------------------------------------------------------------------------------- /examples/opt/single.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/opt/single.ml -------------------------------------------------------------------------------- /examples/ppx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/ppx/dune -------------------------------------------------------------------------------- /examples/ppx/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/examples/ppx/test.ml -------------------------------------------------------------------------------- /owl-opt-lbfgs.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/owl-opt-lbfgs.opam -------------------------------------------------------------------------------- /owl-opt.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/owl-opt.opam -------------------------------------------------------------------------------- /ppx-owl-opt.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/ppx-owl-opt.opam -------------------------------------------------------------------------------- /src/lbfgs/bindings.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/bindings.ml -------------------------------------------------------------------------------- /src/lbfgs/bindings.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/bindings.mli -------------------------------------------------------------------------------- /src/lbfgs/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/dune -------------------------------------------------------------------------------- /src/lbfgs/f2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/f2c.h -------------------------------------------------------------------------------- /src/lbfgs/index.mld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/index.mld -------------------------------------------------------------------------------- /src/lbfgs/lbfgs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs.ml -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_d.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_d.ml -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_d.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_d.mli -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_intf.ml -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_s.ml -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_s.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_s.mli -------------------------------------------------------------------------------- /src/lbfgs/lbfgs_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/lbfgs_stubs.c -------------------------------------------------------------------------------- /src/lbfgs/mdx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/mdx/dune -------------------------------------------------------------------------------- /src/lbfgs/owl_opt_lbfgs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/lbfgs/owl_opt_lbfgs.ml -------------------------------------------------------------------------------- /src/opt/adam/adam.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam.ml -------------------------------------------------------------------------------- /src/opt/adam/adam.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam.mli -------------------------------------------------------------------------------- /src/opt/adam/adam_d.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam_d.ml -------------------------------------------------------------------------------- /src/opt/adam/adam_d.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam_d.mli -------------------------------------------------------------------------------- /src/opt/adam/adam_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam_intf.ml -------------------------------------------------------------------------------- /src/opt/adam/adam_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam_s.ml -------------------------------------------------------------------------------- /src/opt/adam/adam_s.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/adam/adam_s.mli -------------------------------------------------------------------------------- /src/opt/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/dune -------------------------------------------------------------------------------- /src/opt/gd/gd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd.ml -------------------------------------------------------------------------------- /src/opt/gd/gd.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd.mli -------------------------------------------------------------------------------- /src/opt/gd/gd_d.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd_d.ml -------------------------------------------------------------------------------- /src/opt/gd/gd_d.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd_d.mli -------------------------------------------------------------------------------- /src/opt/gd/gd_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd_intf.ml -------------------------------------------------------------------------------- /src/opt/gd/gd_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd_s.ml -------------------------------------------------------------------------------- /src/opt/gd/gd_s.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/gd/gd_s.mli -------------------------------------------------------------------------------- /src/opt/index.mld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/index.mld -------------------------------------------------------------------------------- /src/opt/lr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/lr.ml -------------------------------------------------------------------------------- /src/opt/mdx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/mdx/dune -------------------------------------------------------------------------------- /src/opt/owl_opt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/owl_opt.ml -------------------------------------------------------------------------------- /src/opt/prms.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/prms.ml -------------------------------------------------------------------------------- /src/opt/prms.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/prms.mli -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop.ml -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop.mli -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop_d.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop_d.ml -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop_d.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop_d.mli -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop_intf.ml -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop_s.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop_s.ml -------------------------------------------------------------------------------- /src/opt/rmsprop/rmsprop_s.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/rmsprop/rmsprop_s.mli -------------------------------------------------------------------------------- /src/opt/status.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/opt/status.ml -------------------------------------------------------------------------------- /src/ppx/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/ppx/dune -------------------------------------------------------------------------------- /src/ppx/ppx_owl_opt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owlbarn/owl_opt/HEAD/src/ppx/ppx_owl_opt.ml --------------------------------------------------------------------------------