Giter VIP home page Giter VIP logo

bmo's Introduction

BMO โ€” BMO

BMO, pronounced Beemo, is a Machine Learning toolbox based on Docker and IPython Notebook. Its main features are:

  • Provides an isolated Linux environment.
  • Easy and replicable installation.
  • Extensible with any tool or package you need.

Content

  1. Installation

  2. Docker

  3. nsenter

  4. BMO

  5. Usage

  6. Initial considerations

  7. Start

  8. Finish

  9. Kill

  10. Enter

  11. Commit

  12. Status

  13. List of the installed Python main packages

  14. Notes

  15. Examples and tutorials

  16. License and more

  17. Installation


BMO has the next requirements, but continue reading before install anything.

BMO is based on Docker, that can only be installed on Linux/x64, so, BMO is restricted to the same platforms. This guide only covers the complete BMO installation on Ubuntu 12.04 (Precise Pangolin) and Ubuntu 14.04 (Trusty Tahr), (instructions extracted from the Docker installation page), but except for the Docker installation step, you can use this guide with any Linux distribution. So, let's start! But before, you need to download BMO. For that, open a terminal and execute these commands:

$ wget https://github.com/josemazo/bmo/releases/download/v0.1.1/bmo-v0.1.1.tar.gz
$ tar -zxvf bmo-v0.1.tar.gz
$ rm bmo-v0.1.tar.gz
$ cd bmo/

1.1. Docker

If you are not using Ubuntu 12.04 or Ubuntu 14.04 you can visit the Docker installation page for an extensive documentation.

Important: after installing Docker, or if you have it already installed, you need to be sure that it can run without the use of sudo. If you are using Ubuntu 12.04 or any newer version, this guide will show you how to do it.

In the case you are using Ubuntu 12.04, install these dependencies, and reboot after that:

$ sudo apt-get update
$ sudo apt-get install linux-image-generic-lts-raring linux-headers-generic-lts-raring
$ sudo reboot

Beyond this point, the installation process is the same in Ubuntu 12.04 and Ubuntu 14.04.

Let's start to install Docker with this easy step:

$ sudo apt-get -y install curl
$ curl -s https://get.docker.io/ubuntu/ | sudo sh

To verify that everything has worked as expected, execute these lines:

$ sudo docker version

And you will see something like:

Client version: 1.1.1
Client API version: 1.13
Go version (client): go1.2.1
Git commit (client): bd609d2
Server version: 1.1.1
Server API version: 1.13
Go version (server): go1.2.1
Git commit (server): bd609d2

Now let's use Docker without sudo:

$ sudo groupadd docker
$ sudo gpasswd -a ${USER} docker
$ sudo service docker restart

Logout and log back in and check the version of Docker again:

$ docker version

If you get the same output as before and nothing talking about permissions you have Docker installed correctly. Congratulations!

1.2. nsenter

nsenter is needed for get a prompt of the BMO Docker image when this is running without using ssh. You can read here why you shouldn't use ssh with Docker.

For install nsenter you can visit this repo and follow the instructions detailed there, or you can copy a compiled version that is provided in the nsenter folder:

$ sudo cp nsenter/nsenter nsenter/docker-enter /usr/local/bin/

Important: if you install nsenter using the instructions of the mentioned repo don't forget to install the docker-enter utilty. Also, if you can edit the docker-enter script and modify the line that calls nsenter adding a sudo at the beginning, it will be great!

1.3. BMO

You really don't need to install anything, but you need to download or build the BMO Docker image. There are no difference between download or build the image. But if you are a Docker pro-user and you want to modify the image, you need to build it. In other case, it's preferable to download the image because it's a lot faster.

So, to download:

$ ./bmo -i

Or, if you decide to build it:

$ ./bmo -ib

Wait, and that's all. You have finished with the installation.

  1. Usage

2.1. Initial considerations

Before start explaining how to use BMO, it would be nice to briefly know how Docker works. Docker takes an image, something like in a virtual machine, and boots a Linux in your running Linux, something like a virtual machine, again. So, what is the difference? It's a little bit complicated, but here you can read about what Docker is. The point here is that you will have much better performance than in a virtual machine, in most cases, the same as if you run your sofware from your native machine, and this is very important when you are dealing with Machine Learning.

In summary, the main thing about Docker is that you have images and containers. A container is a running instance of an image, so you can have multiple containers from the same image. And what happens when you install some software or you create some files in a container? You can lose them if you remove the container, but you only need to commit the changes to an image, kind of super easy.

You may now be thinking that using BMO, having Docker in the middle, can be very difficult. But don't worry, for that, a Python script is provided, called bmo, something like a very basic command line utility for make your life easier. But if you are Docker pro-user you can take a look to the Dockerfile and the bmo script to understand everything. Also, for those users, at the end of the bmo script you can find the full list of Docker commands that the script uses.

Important: if you aren't a Docker pro-user, you must know that if you use Docker without using the bmo script, a proper behaviour is not totally guaranteed.

Let's see the main use cases. If you need some more help, you can run:

$ ./bmo --help

or you can become a Docker pro-user reading this guide. You will thank yourself for reading it, beacause Docker is prety awesome. Also, in the help command, it's never mentioned the word container, it used the concept Docker image, for trying to abstract the logic behind Docker.

2.2. Start

For start using the IPython Notebook that BMO provides, you only need to execute the next command:

$ ./bmo -s

The output that you are seeing is a Docker output. The bmo script always shows them, so you can look for help if any error ocurrs.

After that, open your Internet browser and visit:

http://localhost:8888/

Now you are in the IPython Notebook environment. You can visit this link to get more information about this awesome tool.

The directory that you are seeing in your browser it's the notebooks folder inside the root of the BMO Docker container. This directory corresponds to the notebooks folder that is inside the current directory in your terminal. That folder will contain your notebooks.

Important: Docker have a little problem with the files that it creates outside the container. The owner of these files is root. For change that, you can run the next command everytime you need (it will ask for your root password):

$ ./bmo -o

2.3. Finish

If you have finished your work with the IPython Notebook server for the current sesion, you can finish the BMO Docker container with:

$ ./bmo -f

This will finish the container and remove its reference from Docker.

If you want to finish the container without remove its reference, for example, for save changes, you can execute:

$ ./bmo -fo

After doing whatever you need, like commit your changes of the BMO Docker image, execute the next command for remove the Docker reference:

./bmo -rm

Also, after that, it's the perfect time for change the owner of the notebooks with (it will ask for your root password):

$ ./bmo -o

as we saw in the previous section.

Important: remember that for starting the BMO Docker container again you need that its Dockerreference is deleted.

2.4. Kill

Please, execute a kill command only when the BMO Docker container doesn't respond or became frozen, it's your last resort. For kill it, you can execute:

$ ./bmo -k

As the finish command, the kill one also can be executed without remove the BMO Docker container reference:

$ ./bmo -ko

Take a look to the previous section to see how to deal with the Docker reference after kill the container without remove it.

2.5. Enter

If you need some Python package, or a Linux one, that isn't installed on the BMO Docker image you can install them wiht pip or apt-get. For that, if the BMO Docker containter is running, you can execute (it will ask for your root password):

$ ./bmo -e

You will see a prompt. Now you are inside the container logged as root. Install everything you need and type:

$ exit

to return to your machine prompt.

Important: If you want your changes to be permanent, you need to commit them.

2.6. Commit

If you have made some changes to the container that you would like them to be permanent you need to commit the current BMO Docker container. For that you need that the container is running or finished, never killed (bad practice) or removed. After check that, execute:

$ ./bmo -c

And your container will be saved in the BMO Docker image.

2.7. Status

Sometimes you will want to know the state of the BMO Docker container. For that, you can use:

$ ./bmo -st

The possible status of BMO are:

  • running,
  • finished: you need to remove the container for start BMO again,
  • killed: you need to remove the container for start BMO again,
  • non-existent: there isn't any container attached to Docker, so you can start a new one.
  1. List of the installed Python main packages

Once the BMO Docker image has been downloaded or built, a bunch of Python packages will be installed in the image. Here is a list of the main ones:

  • beautifulsoup4
  • gensim
  • ipython[notebook]
  • matplotlib
  • networkx
  • nltk
  • numpy
  • patsy
  • pyenchant
  • pygraphviz
  • pandas
  • pattern
  • scikit-learn
  • scipy
  • seaborn
  • simpy
  • ujson
  • statsmodels
  • textblob
  1. Notes

  • The version of Linux that contains the image is a minified version of Ubuntu 14.04 (Trusty Thar).
  • If you use matplotlib with the option text.usetex = True you will get an error. The cause of this is that LaTeX isn't installed beacuse the installation with its dependences occupies approximately 1GB, almost the same as the BMO Docker image. If you need Latex you can install it very easily by typing:
$ apt-get install texlive-latex-extra
  • The only writter installed for matplotlib's animations's is imagemagick, so you can create GIFs! If you need another writter, feel free to install it.
  • The nltk package comes without its data. The best way to download it, it's to start BMO in bash mode, run the downdload module from nltk as a script and end by committing BMO after exit:
$ ./bmo -s
$ python -m nltk.downloader all
$ exit
$ ./bmo -c
$ ./bmo -f
  1. Examples and tutorials

The next list shows a few examples and tutorials for IPython Notebook and some Python's libraries, each of them created by its respective author.

  1. License and more

  • This project is released under the MIT License.
  • The BMO name and its logo are property of Cartoon Network. The logo has been taken from the Adventure Time wiki on Wikia.
  • This is a project that will always be growing, and of course, you can contribute.

bmo's People

Contributors

josemazo avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.