All Projects → jupyter → Docker Demo Images

jupyter / Docker Demo Images

Licence: bsd-3-clause
Demo images for use in try.jupyter.org and tmpnb.org

Projects that are alternatives of or similar to Docker Demo Images

Practicalsessions2019
Materials for the practical sessions at EEML2019
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Toxic Comment Classification
Code and write-up for the Kaggle Toxic Comment Classification Challenge
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Numpywren
Serverless Scientific Computing
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Urbanregionfunctionclassification
第五届百度西安交大大数据竞赛 城市区域功能分类 Baseline
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Tf Eager Examples
A set of simple examples ported from PyTorch for Tensorflow Eager Execution
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Gan tutorial
Tensorflow example of a conv GAN on MNIST.
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Piaic islamabad batch3
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Invitation to julia
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Swae
Implementation of the Sliced Wasserstein Autoencoders
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Frcnn cad
Computer aided detection using Faster-RCNN
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Ml Webinar
Machine Learning with sklearn tutorials (for Pearson)
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Preprocessing For Deep Learning
This is the notebook associated with the blog post:
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Vrn Pytorch
PyTorch Code for "Large Pose 3D Face Reconstruction from a Single Image via Direct Volumetric CNN Regression"
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Weibosentiment
基于各种机器学习和深度学习的中文微博情感分析
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Machinelearning Detecting Twitter Bots
Custom classification algorithm to sense the bots vs human on social media space like twitter
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Computer vision project
计算机视觉项目实战
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Toxic
Toxic Comment Classification Challenge, 12th place solution https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook
Age Gender Estimation
Keras implementation of a CNN network for age and gender estimation
Stars: ✭ 1,195 (+1493.33%)
Mutual labels:  jupyter-notebook
Spatialde
Test genes for Spatial Variation
Stars: ✭ 74 (-1.33%)
Mutual labels:  jupyter-notebook
Algorithm Playground
An (old) and unstructured (messy tbh) collection of programming exercises.
Stars: ✭ 75 (+0%)
Mutual labels:  jupyter-notebook

Docker Demo Image

This repo is archived and no longer used. If you would like to include a demo of your Jupyter kernel, please add a link to your own demo to the try jupyter page by adding a link, description, and logo here.

Original README

Join the chat at https://gitter.im/jupyter/docker-demo-images

Herein lies the Dockerfile for jupyter/demo, the container image currently used by tmpnb.org). It inherits from jupyter/minimal-notebook, the base image defined in jupyter/docker-stacks.

Creating sample notebooks does not require knowledge of Docker, just the IPython/Jupyter notebook. Submit PRs against the notebooks/ folder to get started.

Organization

The big demo image pulls in resources from:

  • notebooks/ for example notebooks
  • datasets/ for example datasets
  • resources/ for configuration and branding

Community Notebooks

tmpnb.org is a great resource for communities looking for a place to host their public IPython/Jupyter notebooks. If your group has a notebook you want to share, just fork this repository and add a directory for your community in the notebooks/communities folder and place your notebook in the new directory (e.g. notebooks/communities/north_pole_julia_group/). Commit and push your changes to Github and send us a pull request.

The following tips will make sure your notebooks work well on tmpnb.org and work well for the users of your notebook.

  • Create your notebook using Jupyter Notebook 4.x to ensure your notebook is v4 format.
  • If adding a notebook that was a slideshow, make sure to set the "Cell Toolbar" setting back to None.
  • If you are creating your notebook on tmpnb.org, make sure you're aware of the 10 minute idle time notebook reaper. If you walk away from your notebook for too long, you can lose it!

Building the Docker Image

There is a Makefile to make life a bit easier here:

# build it
make build
# try it locally
make dev

Updating the Docker Image

The demo image merges jupyter/datascience-notebook and jupyter/all-spark-notebook. It does so by inheriting FROM all-spark-notebook and including the contents of its datascience sibling Dockerfiles. To update the reference tag, edit the TAG variable in the Makefile and run:

make update-tag

FAQ

Can I use the jupyter/demo Docker image locally?

Sure. Get a docker setup on your host and then do something like the following.

docker pull jupyter/demo
docker run -p 8888:8888 jupyter/demo

Is there a smaller image with fewer languages I can use?

Indeed. See the docker-stacks repository for selection of smaller, more focused Docker images.

When do you update try.jupyter.org / tmpnb.org with new images?

Updates are currently applied ad-hoc, when there's significant demand or new features.

How do I deploy my own temporary notebook site?

Have a look at jupyter/tmpnb for the tech that powers the tmpnb.org site and tmpnb-deploy for an Ansible playbook used to deploy the site.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].