Skip to content

Dockerfile of Jupyter (IPython notebook) and IOCaml (OCaml kernel) with libraries for data science and machine learning

License

Notifications You must be signed in to change notification settings

akabe/docker-iocaml-datascience

Repository files navigation

Deprecated: this Dockerfile is no longer maintained. Please use akabe/ocaml-jupyter-datascience instead.

Travis CI MicroBadger
Build Status Image Status

A ready-to-use environment of Jupyter (IPython notebook) and IOCaml (OCaml kernel) with libraries for data science and machine learning.

Getting started

First, launch a Jupyter server as follows.

$ docker run --name iocaml -it -p 8888:8888 akabe/iocaml-datascience
[I 15:38:04.170 NotebookApp] Writing notebook server cookie secret to /home/opam/.local/share/jupyter/runtime/notebook_cookie_secret
[W 15:38:04.190 NotebookApp] WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
[I 15:38:04.197 NotebookApp] Serving notebooks from local directory: /notebooks
[I 15:38:04.197 NotebookApp] 0 active kernels
[I 15:38:04.197 NotebookApp] The Jupyter Notebook is running at: http://[all ip addresses on your system]:8888/?token=4df0fee0719115f474c8dd9f9281abed28db140d25f933e9
[I 15:38:04.197 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[W 15:38:04.198 NotebookApp] No web browser found: could not locate runnable browser.
[C 15:38:04.198 NotebookApp]

    Copy/paste this URL into your browser when you connect for the first time,
    to login with a token:
        http://localhost:8888/?token=4df0fee0719115f474c8dd9f9281abed28db140d25f933e9

Second, access to the URL at the above last line to your web browser, then

Screenshot of Jupyter with IOCaml

You can create OCaml notebooks!

Notebooks on your host machine can be mounted to a Docker container like

docker run --name iocaml -it -p 8888:8888 -v $PWD:/notebooks akabe/iocaml-datascience

Distributions

The default images are built on Debian 8:

Tag OCaml OPAM Command Dockerfile
latest 4.04.1 1.2.2 docker pull akabe/iocaml-datascience Dockerfile
4.05.0 4.05.0+trunk 1.2.2 docker pull akabe/iocaml-datascience:4.05.0 Dockerfile
4.04.1 4.04.1 1.2.2 docker pull akabe/iocaml-datascience:4.04.1 Dockerfile

CentOS

Distribution OCaml OPAM Command Dockerfile
CentOS 7 4.05.0+trunk 1.2.2 docker pull akabe/iocaml-datascience:centos7_ocaml4.05.0 Dockerfile
CentOS 7 4.04.1 1.2.2 docker pull akabe/iocaml-datascience:centos7_ocaml4.04.1 Dockerfile

Debian

Distribution OCaml OPAM Command Dockerfile
Debian 8 4.05.0+trunk 1.2.2 docker pull akabe/iocaml-datascience:debian8_ocaml4.05.0 Dockerfile
Debian 8 4.04.1 1.2.2 docker pull akabe/iocaml-datascience:debian8_ocaml4.04.1 Dockerfile

Pre-installed packages

Standard libraries

The OCaml standard library is too small in practical use. The following packages provide popular data structures, a lot of frequently-used functions such as string operations, complex iteration on collections, etc.

  • Jane Street Core (GitHub, API) — A huge extended standard library developed by Jane Street Capital. The library is actively maintained and reliable due to industrial use of Jane Street. Its interface is designed differently from the OCaml standard library.
  • Batteries Included (GitHub, API) — A famous extended standard library compatible with the OCaml standard library. It is smaller than Jane Street Core, but commonly-used functions are implemented.

Numerical computation

  • Lacaml (GitHub, API) — A binding to BLAS (Basic Linear Algebra Subprograms) and LAPACK (Linear Algebra PACKage), traditional linear algebra libraries written in Fortran. This library supplies basic operations on vectors and matrices (e.g., addition, dot product, multiplication), LU, QR, SVD, least-square fitting, etc.
  • SLAP (GitHub, API) — A high-level wrapper of Lacaml with type-based static size checks for vectors and matrices.
  • GSL (GitHub, API) — A binding to GNU Scientific Library (GSL), a rich numerical analysis library containing interface to BLAS. This library contains eigenproblem solvers, least square fitting, pseudo-random number generators (such as Mersenne Twister), FFT (fast Fourier transform), Monte-Carlo simulation, etc.
  • FFTW3 (GitHub) — A binding to FFTW3, a major fast Fourier transform library.
  • libsvm (BitBucket, API) — Support vector machine (SVM) is a powerful model in machine learning. This is a binding to libsvm, a library for SVMs.
  • TensorFlow (GitHub) — A binding to TensorFlow, a popular open-source neural network library developed by Google.
  • L-BFGS (API) — A binding to L-BFGS-B, a quasi-Newton library for bound-constrained optimization.
  • Ocephes (GitHub, API) — A binding to Ocephes, a library of special math functions like Binominal, Gaussian, Gamma distributions, incomplete Beta integral.
  • Oml (GitHub, API) — A small library for numerical computing on OCaml.
  • GPR (GitHub, API. PDF) — Efficient and scalable Gaussian Process Regression in OCaml.

Visualization

Data sources

Concurrent programming

CUI tools

  • ImageMagick — ImageMagick is a program to create, edit, compose, or convert bitmap images. This supports many formats, e.g., PNG, JPEG, GIF, TIFF, PDF, etc.
  • FFmpeg — FFmpeg is a powerful tool for converting audio and video files.

Examples

git clone git@github.com:akabe/docker-iocaml-datascience.git
docker run --name iocaml -it -p 8888:8888 -v $PWD/docker-iocaml-datascience/examples:/notebooks akabe/iocaml-datascience

Contribution

If you know a widely-used numerical library in OCaml, find a bug, or have an idea to improve this environment, please create an issue or pull-request your changes.

About

Dockerfile of Jupyter (IPython notebook) and IOCaml (OCaml kernel) with libraries for data science and machine learning

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published