You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dependabot[bot] 4c72bc3fda Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements (#968)
* Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.12.3 to 1.15.0.
- [Release notes](https://github.com/tensorflow/tensorflow/releases)
- [Changelog](https://github.com/tensorflow/tensorflow/blob/master/RELEASE.md)
- [Commits](https://github.com/tensorflow/tensorflow/compare/v1.12.3...v1.15.0)

Signed-off-by: dependabot[bot] <support@github.com>

* Update pip because tensorflow 1.15 cannot not be found.

* Fix a typo (pip -> pip3)

* Replaced pip3 by python3 -m pip.
6 years ago
..
README.md OpenVino integration (#134) 7 years ago
docker-compose.cuda.yml OpenVino integration (#134) 7 years ago
install.sh Bump tensorflow from 1.12.3 to 1.15.0 in /cvat/requirements (#968) 6 years ago

README.md

NVIDIA CUDA Toolkit

Requirements

  • NVIDIA GPU with a compute capability [3.0 - 7.2]
  • Latest GPU driver

Installation

Install the latest driver for your graphics card

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-cache search nvidia-*   # find latest nvidia driver
sudo apt-get install nvidia-*    # install the nvidia driver
sudo apt-get install mesa-common-dev
sudo apt-get install freeglut3-dev
sudo apt-get install nvidia-modprobe

Reboot your PC and verify installation by nvidia-smi command.

Install Nvidia-Docker

Please be sure that installation was successful.

docker info | grep 'Runtimes'   # output should contains 'nvidia'

Build docker image

# From project root directory
docker-compose -f docker-compose.yml -f components/cuda/docker-compose.cuda.yml build

Run docker container

# From project root directory
docker-compose -f docker-compose.yml -f components/cuda/docker-compose.cuda.yml up -d