Skip to content
This repository has been archived by the owner on Aug 12, 2020. It is now read-only.

Commit

Permalink
Updated readme to accomodate split repositories.
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinmenac3 committed Jan 15, 2018
1 parent 385e9b0 commit 7a18dab
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ The idea is that if you use existing dataset loaders and networks and only modif

## Install

First clone the repository **recursively**!

```bash
git clone --recursive https://github.com/penguinmenac3/tensorflow-starterpack.git
```

Simply create a new python virtual environment (preferably python 3.x) and install the requirements listed in the [requirements.txt](requirements.txt).
Properly install tensorflow-gpu please follow the [official instructions](https://www.tensorflow.org/install/) carefully.

Expand All @@ -25,22 +31,16 @@ Or launch your code from the command line like the example bellow.

## Datasets

There are handlers for several datasets.
To get you started quickly.

1. [Named Folders (Foldername = Label)](datasets/classification/named_folders.py)
2. [MNIST](datasets/classification/mnist.py)
3. ImageNet [TODO]
4. Coco [TODO]
5. [Cifar10/Cifar100](datasets/classification/cifar.py)
6. [LFW (named folders)](datasets/classification/named_folders.py)
6. PASCAL VOC [TODO]
7. Places [TODO]
8. Kitti [TODO]
9. Tensorbox [TODO]
10. CamVid [TODO]
11. Cityscapes [TODO]
12. ROS-Robot (as data source) [TODO]
For dataset support I use my own dataset library including bindings to load many popular datasets in a unified format.

However, to use it you will need to initialize git submodules if you did not do a recursive clone:

```bash
git submodule update --init --recursive
```

The dataset loader basically supports **classification**, **segmentation**, **regression** (including **2d- and 3d-detection**) and some visualization helpers.
For details checkout the readme of the project [**here**](https://github.com/penguinmenac3/datasets/blob/master/README.md).

## Models

Expand Down
2 changes: 1 addition & 1 deletion datasets

0 comments on commit 7a18dab

Please sign in to comment.