An open API service indexing awesome lists of open source software.

https://github.com/hsm207/docker-harebrain

Dockerfile to get started with fastai's S4TF lessons
https://github.com/hsm207/docker-harebrain

docker s4tf tensorflow

Last synced: 3 months ago
JSON representation

Dockerfile to get started with fastai's S4TF lessons

Awesome Lists containing this project

README

          

# Introduction

This repository contains a Dockerfile that containerizes fastai's [harebrain](https://forums.fast.ai/t/about-the-harebrain-category/36672) project.

It is based on [Jeremy's Harebrained install guide](https://forums.fast.ai/t/jeremys-harebrained-install-guide/43814/9).

# Prerequisites
You will need a machine that has the following software installed in order to build and run the image:
* [docker](https://docs.docker.com/install/)
* [nvidia-docker](https://github.com/NVIDIA/nvidia-docker)

# Usage

1. Clone this repo.
2. Navigate to this project's root directory.
3. Execute:
```bash
docker build -t harebrain . && \
docker run -p 8888:8888 --cap-add SYS_PTRACE --runtime=nvidia --rm harebrain

```
This will build the image which will launch a jupyter server at port 8888. The
working directory of this notebook instance is the root of the [fastai_docs](https://github.com/fastai/fastai_docs) repo.
The `dev_swift` folder contains notebooks about Swift for TensorFlow.
# Contributing
Feel free to raise an issue if you have any questions, feedback, etc.