image3c


Nameimage3c JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://github.com/stowersinstitute/LIBPB-1390-Image3C
SummaryClassifier for Image3c
upload_time2022-12-14 19:55:02
maintainer
docs_urlNone
authorChris Wood
requires_python>=3.6,<3.8
licenseApache Software License 2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Instructions for training and prediction

## Installation of python
- For best performance an NVIDIA GPU with CUDA is recommended

### Install requirements for TensorFlow
- tensorflow_gpu-1.15.0	3.3-3.7
  - NVIDIA drivers
    - Linux : >= 410.48
    - Windows : >= 411.31
  - cuDNN 7.6 (See below to install with conda)
  - CUDA 10.2 (See below to install with conda)

The steps 
[below](README.md#create-a-conda-environment) 
install the CUDA libraries during the conda environment setup,
but if you want more information about it see these links:
- For more detail about using conda to install CUDA see this article:
  [Install CUDA with conda](https://towardsdatascience.com/managing-cuda-dependencies-with-conda-89c5d817e7e1)

- For more information regarding installation of CUDA, see this document:
  [NVIDIA CUDA](https://developer.download.nvidia.com/compute/cuda/10.0/Prod/docs/sidebar/CUDA_Quick_Start_Guide.pdf)

### Install miniconda (recommended) or anaconda
We recommend using [conda](https://docs.conda.io/projects/conda/en/latest/)
as an environment and package manager. It will allow easily creating python
environments with specific version and package needs. If you already have Anaconda
installed it will work and the instructions below will be the same.

1. Download [miniconda](https://docs.conda.io/projects/conda/en/latest/) for your platform.
2. Follow the installation documentation for the target operating system: 
   -  [Windows](https://conda.io/projects/conda/en/latest/user-guide/install/windows.html)
   -  [Linux](https://conda.io/projects/conda/en/latest/user-guide/install/linux.html)
   -  [Mac](https://conda.io/projects/conda/en/latest/user-guide/install/macos.html) 

After installation, open a terminal to start installing packages. On Windows find the
Anaconda Prompt command using the search tool.

### Create a conda environment
Image3c requires version 3.7 of python and TensorFlow version 1.15, so a fresh conda
enviroment is recommended. We have written an environment file the takes care of
creating the conda environment and installing all needed dependencies. If you are on
MacOS or don't have an NVIDA GPU with CUDA use environment.yml. If you are on Windows
or Linux and have a CUDA GPU then use environment_gpu.yml

Creating the conda environment in this way also installs the correct CUDA
libraries in the conda python environment.

In the following command, a conda environment
named `image3c` is created with python 3.7:

`conda env create -f environment.yml`

if on windows or linux with a CUDA gpu

`conda env create -f environment_gpu.yml`

To activate this environment, use this command:
`conda activate image3c`

The image3c python package is installed during the creation of the conda
environment, so no other installation command are needed.

### Install image3c from pip
If you don't want to create an environment as described above, image3c can
be installed with pip:

```pip install image3c```


# How to use Image3c

The main documentation can be found at:
[Image3c Github](https://github.com/stowersinstitute/LIBPB-1390-Image3C/)

Jupyter notebooks giving details about training and predicting
data from the ImageStream can be found in the main pages of this github repository:
[Classifier Notebooks](https://github.com/stowersinstitute/LIBPB-1390-Image3C/tree/master/4-Classifier).


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/stowersinstitute/LIBPB-1390-Image3C",
    "name": "image3c",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6,<3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "Chris Wood",
    "author_email": "cjw@stowers.org",
    "download_url": "https://files.pythonhosted.org/packages/32/f3/2c4716768ed884c062d7c9242829c9f9c7f47bd1e54750f6a2b824811b8a/image3c-0.1.4.tar.gz",
    "platform": null,
    "description": "# Instructions for training and prediction\n\n## Installation of python\n- For best performance an NVIDIA GPU with CUDA is recommended\n\n### Install requirements for TensorFlow\n- tensorflow_gpu-1.15.0\t3.3-3.7\n  - NVIDIA drivers\n    - Linux : >= 410.48\n    - Windows : >= 411.31\n  - cuDNN 7.6 (See below to install with conda)\n  - CUDA 10.2 (See below to install with conda)\n\nThe steps \n[below](README.md#create-a-conda-environment) \ninstall the CUDA libraries during the conda environment setup,\nbut if you want more information about it see these links:\n- For more detail about using conda to install CUDA see this article:\n  [Install CUDA with conda](https://towardsdatascience.com/managing-cuda-dependencies-with-conda-89c5d817e7e1)\n\n- For more information regarding installation of CUDA, see this document:\n  [NVIDIA CUDA](https://developer.download.nvidia.com/compute/cuda/10.0/Prod/docs/sidebar/CUDA_Quick_Start_Guide.pdf)\n\n### Install miniconda (recommended) or anaconda\nWe recommend using [conda](https://docs.conda.io/projects/conda/en/latest/)\nas an environment and package manager. It will allow easily creating python\nenvironments with specific version and package needs. If you already have Anaconda\ninstalled it will work and the instructions below will be the same.\n\n1. Download [miniconda](https://docs.conda.io/projects/conda/en/latest/) for your platform.\n2. Follow the installation documentation for the target operating system: \n   -  [Windows](https://conda.io/projects/conda/en/latest/user-guide/install/windows.html)\n   -  [Linux](https://conda.io/projects/conda/en/latest/user-guide/install/linux.html)\n   -  [Mac](https://conda.io/projects/conda/en/latest/user-guide/install/macos.html) \n\nAfter installation, open a terminal to start installing packages. On Windows find the\nAnaconda Prompt command using the search tool.\n\n### Create a conda environment\nImage3c requires version 3.7 of python and TensorFlow version 1.15, so a fresh conda\nenviroment is recommended. We have written an environment file the takes care of\ncreating the conda environment and installing all needed dependencies. If you are on\nMacOS or don't have an NVIDA GPU with CUDA use environment.yml. If you are on Windows\nor Linux and have a CUDA GPU then use environment_gpu.yml\n\nCreating the conda environment in this way also installs the correct CUDA\nlibraries in the conda python environment.\n\nIn the following command, a conda environment\nnamed `image3c` is created with python 3.7:\n\n`conda env create -f environment.yml`\n\nif on windows or linux with a CUDA gpu\n\n`conda env create -f environment_gpu.yml`\n\nTo activate this environment, use this command:\n`conda activate image3c`\n\nThe image3c python package is installed during the creation of the conda\nenvironment, so no other installation command are needed.\n\n### Install image3c from pip\nIf you don't want to create an environment as described above, image3c can\nbe installed with pip:\n\n```pip install image3c```\n\n\n# How to use Image3c\n\nThe main documentation can be found at:\n[Image3c Github](https://github.com/stowersinstitute/LIBPB-1390-Image3C/)\n\nJupyter notebooks giving details about training and predicting\ndata from the ImageStream can be found in the main pages of this github repository:\n[Classifier Notebooks](https://github.com/stowersinstitute/LIBPB-1390-Image3C/tree/master/4-Classifier).\n\n",
    "bugtrack_url": null,
    "license": "Apache Software License 2.0",
    "summary": "Classifier for Image3c",
    "version": "0.1.4",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "a5bd8afab5e9f48fc7a60d58fcfccd5b",
                "sha256": "553597d8f8f425fd23a0f458aa5768630c84185d84ff0c656bf6d16ce4d7337a"
            },
            "downloads": -1,
            "filename": "image3c-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a5bd8afab5e9f48fc7a60d58fcfccd5b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6,<3.8",
            "size": 12928,
            "upload_time": "2022-12-14T19:54:59",
            "upload_time_iso_8601": "2022-12-14T19:54:59.179209Z",
            "url": "https://files.pythonhosted.org/packages/b8/5a/0c620a9fa215d96c7fa4b5d73c2e29db136a41e063acdfc94e61ef2e0f85/image3c-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "4dae6e60fd809088d0227121fb5c454e",
                "sha256": "03d900efbf430cad9dfc98e95fd8d82bc03487398de5d82ca9181563f0e32962"
            },
            "downloads": -1,
            "filename": "image3c-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "4dae6e60fd809088d0227121fb5c454e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6,<3.8",
            "size": 12905,
            "upload_time": "2022-12-14T19:55:02",
            "upload_time_iso_8601": "2022-12-14T19:55:02.929835Z",
            "url": "https://files.pythonhosted.org/packages/32/f3/2c4716768ed884c062d7c9242829c9f9c7f47bd1e54750f6a2b824811b8a/image3c-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-14 19:55:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "stowersinstitute",
    "github_project": "LIBPB-1390-Image3C",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "image3c"
}
        
Elapsed time: 0.02567s