Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/pushtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,24 @@ jobs:
- name: Install the built wheel and test usage (UNIX)
if: matrix.operating-system == 'ubuntu-latest' || matrix.operating-system == 'macOS-latest'
run: |
pip install --ignore-installed dist/imageinary-*-py3-none-any.whl
pip install --ignore-installed dist/nvidia_imageinary-*-py3-none-any.whl
Comment thread
joehandzik marked this conversation as resolved.
imagine --help
- name: Install the built wheel and test usage (Windows)
if: matrix.operating-system == 'windows-latest' || matrix.operating-system == 'windows-2016'
run: |
pip install --ignore-installed --find-links=dist imageinary
pip install --ignore-installed --find-links=dist nvidia-imageinary
imagine --help
- name: Install the built wheel with all dependencies (UNIX)
if: matrix.operating-system == 'ubuntu-latest' || matrix.operating-system == 'macOS-latest'
run: |
pip install imageinary['all']
pip install nvidia-imageinary['all']
imagine --help
pip freeze | grep "tensorflow"
pip freeze | grep "mxnet"
- name: Install the built wheel with all dependencies (Windows)
if: matrix.operating-system == 'windows-latest' || matrix.operating-system == 'windows-2016'
run: |
pip install imageinary['all']
pip install nvidia-imageinary['all']
imagine --help
pip freeze | grep "tensorflow"
pip freeze | grep "mxnet"
Expand Down Expand Up @@ -85,24 +85,24 @@ jobs:
- name: Install the built wheel and test usage (UNIX)
if: matrix.operating-system == 'ubuntu-latest' || matrix.operating-system == 'macOS-latest'
run: |
pip install --ignore-installed dist/imageinary-*-py3-none-any.whl
pip install --ignore-installed dist/nvidia_imageinary-*-py3-none-any.whl
imagine --help
- name: Install the built wheel and test usage (Windows)
if: matrix.operating-system == 'windows-latest' || matrix.operating-system == 'windows-2016'
run: |
pip install --ignore-installed --find-links=dist imageinary
pip install --ignore-installed --find-links=dist nvidia-imageinary
imagine --help
- name: Install the built wheel with all dependencies (UNIX)
if: matrix.operating-system == 'ubuntu-latest' || matrix.operating-system == 'macOS-latest'
run: |
pip install tensorflow==1.14.0 imageinary['all']
pip install tensorflow==1.14.0 nvidia-imageinary['all']
imagine --help
pip freeze | grep "tensorflow"
pip freeze | grep "mxnet"
- name: Install the built wheel with all dependencies (Windows)
if: matrix.operating-system == 'windows-latest' || matrix.operating-system == 'windows-2016'
run: |
pip install tensorflow==1.14.0 imageinary['all']
pip install tensorflow==1.14.0 nvidia-imageinary['all']
imagine --help
pip freeze | grep "tensorflow"
pip freeze | grep "mxnet"
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ can be installed via `pip`.

```bash
$ ls dist/
imageinary-1.0.0-py3-none-any.whl imageinary-1.0.0.tar.gz
nvidia-imageinary-1.0.1-py3-none-any.whl nvidia-imageinary-1.0.1.tar.gz
```

## Installing
Expand All @@ -76,7 +76,7 @@ The minimal install supports standard image types, such as JPG, PNG, and BMP
and only installs the dependencies necessary for those tools.

```bash
pip install imageinary
pip install nvidia-imageinary
```

### TFRecord Support
Expand All @@ -85,15 +85,15 @@ needs to be included as a dependency. This can be done by running the following
which installs TensorFlow alongside all other dependencies:

```bash
pip install imageinary['tfrecord']
pip install nvidia-imageinary['tfrecord']
```

### RecordIO Support
RecordIO files are supported using MXNet, which can be included as a dependency
using the following:

```bash
pip install imageinary['mxnet']
pip install nvidia-imageinary['mxnet']
```

### Complete Install
Expand All @@ -102,7 +102,7 @@ TFRecords, and RecordIO files without installing extra packages later. Run the
following to install all dependencies:

```bash
pip install imageinary['all']
pip install nvidia-imageinary['all']
```

## Running
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
extras['all'] = [item for group in extras.values() for item in group]

setup(
name='imageinary',
name='nvidia-imageinary',
version=version,
description='''A reproducible mechanism which is used to generate large
image datasets at various resolutions. The tool supports multiple image types,
Expand Down