├── .jupyter ├── custom │ ├── custom.css │ └── custom.js └── nbconfig │ └── notebook.json ├── .ocamlinit ├── .travis-ci.sh ├── .travis.yml ├── LICENSE ├── README.md ├── dockerfiles ├── centos7_ocaml4.04.2 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── MariaDB.repo │ └── entrypoint.sh ├── centos7_ocaml4.05.0 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── MariaDB.repo │ └── entrypoint.sh ├── centos7_ocaml4.06.0 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── MariaDB.repo │ └── entrypoint.sh ├── centos7_ocaml4.07.0 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── MariaDB.repo │ └── entrypoint.sh ├── debian8_ocaml4.04.2 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── entrypoint.sh │ └── ocaml-jupyter-datascience-extra.list ├── debian8_ocaml4.05.0 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── entrypoint.sh │ └── ocaml-jupyter-datascience-extra.list ├── debian8_ocaml4.06.0 │ ├── .jupyter │ │ ├── custom │ │ │ ├── custom.css │ │ │ └── custom.js │ │ └── nbconfig │ │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── entrypoint.sh │ └── ocaml-jupyter-datascience-extra.list └── debian8_ocaml4.07.0 │ ├── .jupyter │ ├── custom │ │ ├── custom.css │ │ └── custom.js │ └── nbconfig │ │ └── notebook.json │ ├── .ocamlinit │ ├── Dockerfile │ ├── entrypoint.sh │ └── ocaml-jupyter-datascience-extra.list ├── entrypoint.sh ├── generate.sh ├── generate_all.sh ├── notebooks ├── .gitignore ├── cohttp_async_DuckDuckGoAPI.ipynb ├── cohttp_lwt_DuckDuckGoAPI.ipynb ├── datasets │ ├── bivariate_gaussian_2d.csv │ └── lenna.png ├── fftw3_example.ipynb ├── formant_estimation_by_AR.ipynb ├── gaussian_random_walk.ipynb ├── introduction.ipynb ├── owl.ipynb ├── plplot.ipynb ├── random_dataset_generation.ipynb ├── simple_image_filtering.ipynb ├── slap_two_layer_neural_network.ipynb └── wav.ml └── tests ├── .gitignore ├── camomile.ml ├── cohttp-async.ml ├── cohttp-lwt-unix.ml ├── gsl.ml ├── lacaml.ml ├── lambdasoup.ml ├── lbfgs.ml ├── libsvm.ml ├── mariadb.ml ├── mecab.ml ├── mysql.ml ├── nbtest.ml ├── ocephes.ml ├── owl.ml ├── plplot.ml ├── postgresql.ml ├── run_test.sh ├── run_test_on_docker.sh ├── slap.ml ├── sqlite3.ml ├── tensorflow.ml └── webpage.js /.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.ocamlinit -------------------------------------------------------------------------------- /.travis-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.travis-ci.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/README.md -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/MariaDB.repo -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.04.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.04.2/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/MariaDB.repo -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.05.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.05.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/MariaDB.repo -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.06.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.06.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/MariaDB.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/MariaDB.repo -------------------------------------------------------------------------------- /dockerfiles/centos7_ocaml4.07.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/centos7_ocaml4.07.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.04.2/ocaml-jupyter-datascience-extra.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.04.2/ocaml-jupyter-datascience-extra.list -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.05.0/ocaml-jupyter-datascience-extra.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.05.0/ocaml-jupyter-datascience-extra.list -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.06.0/ocaml-jupyter-datascience-extra.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.06.0/ocaml-jupyter-datascience-extra.list -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/.jupyter/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/.jupyter/custom/custom.css -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/.jupyter/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/.jupyter/custom/custom.js -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/.jupyter/nbconfig/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/.jupyter/nbconfig/notebook.json -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/.ocamlinit -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/Dockerfile -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/entrypoint.sh -------------------------------------------------------------------------------- /dockerfiles/debian8_ocaml4.07.0/ocaml-jupyter-datascience-extra.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/dockerfiles/debian8_ocaml4.07.0/ocaml-jupyter-datascience-extra.list -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/generate.sh -------------------------------------------------------------------------------- /generate_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/generate_all.sh -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- 1 | **/.ipynb_checkpoints -------------------------------------------------------------------------------- /notebooks/cohttp_async_DuckDuckGoAPI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/cohttp_async_DuckDuckGoAPI.ipynb -------------------------------------------------------------------------------- /notebooks/cohttp_lwt_DuckDuckGoAPI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/cohttp_lwt_DuckDuckGoAPI.ipynb -------------------------------------------------------------------------------- /notebooks/datasets/bivariate_gaussian_2d.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/datasets/bivariate_gaussian_2d.csv -------------------------------------------------------------------------------- /notebooks/datasets/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/datasets/lenna.png -------------------------------------------------------------------------------- /notebooks/fftw3_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/fftw3_example.ipynb -------------------------------------------------------------------------------- /notebooks/formant_estimation_by_AR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/formant_estimation_by_AR.ipynb -------------------------------------------------------------------------------- /notebooks/gaussian_random_walk.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/gaussian_random_walk.ipynb -------------------------------------------------------------------------------- /notebooks/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/introduction.ipynb -------------------------------------------------------------------------------- /notebooks/owl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/owl.ipynb -------------------------------------------------------------------------------- /notebooks/plplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/plplot.ipynb -------------------------------------------------------------------------------- /notebooks/random_dataset_generation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/random_dataset_generation.ipynb -------------------------------------------------------------------------------- /notebooks/simple_image_filtering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/simple_image_filtering.ipynb -------------------------------------------------------------------------------- /notebooks/slap_two_layer_neural_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/slap_two_layer_neural_network.ipynb -------------------------------------------------------------------------------- /notebooks/wav.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/notebooks/wav.ml -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/camomile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/camomile.ml -------------------------------------------------------------------------------- /tests/cohttp-async.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/cohttp-async.ml -------------------------------------------------------------------------------- /tests/cohttp-lwt-unix.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/cohttp-lwt-unix.ml -------------------------------------------------------------------------------- /tests/gsl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/gsl.ml -------------------------------------------------------------------------------- /tests/lacaml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/lacaml.ml -------------------------------------------------------------------------------- /tests/lambdasoup.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/lambdasoup.ml -------------------------------------------------------------------------------- /tests/lbfgs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/lbfgs.ml -------------------------------------------------------------------------------- /tests/libsvm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/libsvm.ml -------------------------------------------------------------------------------- /tests/mariadb.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/mariadb.ml -------------------------------------------------------------------------------- /tests/mecab.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/mecab.ml -------------------------------------------------------------------------------- /tests/mysql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/mysql.ml -------------------------------------------------------------------------------- /tests/nbtest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/nbtest.ml -------------------------------------------------------------------------------- /tests/ocephes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/ocephes.ml -------------------------------------------------------------------------------- /tests/owl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/owl.ml -------------------------------------------------------------------------------- /tests/plplot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/plplot.ml -------------------------------------------------------------------------------- /tests/postgresql.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/postgresql.ml -------------------------------------------------------------------------------- /tests/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/run_test.sh -------------------------------------------------------------------------------- /tests/run_test_on_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/run_test_on_docker.sh -------------------------------------------------------------------------------- /tests/slap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/slap.ml -------------------------------------------------------------------------------- /tests/sqlite3.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/sqlite3.ml -------------------------------------------------------------------------------- /tests/tensorflow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/tensorflow.ml -------------------------------------------------------------------------------- /tests/webpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akabe/docker-ocaml-jupyter-datascience/HEAD/tests/webpage.js --------------------------------------------------------------------------------