Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 980 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 980 Bytes

sleap-deps

Packages necessary for sleap build maintained by the SLEAP team.

tensorflow

There is a Github Actions workflow build_tensorflow.yml that uses Github runners to build packages for us (and upload them to the sleap-deps/label/dev channel). But, if you would like to locally build and test the tensorflow package:

  1. Create the tensorflow build environment:

    mamba env create -f environment.tensorflow.yml -n tf
  2. Activate the tensorflow build environment:

    mamba activate tf
  3. Build the tensorflow conda package:

    Windows or Linux

    conda build --debug .conda.tensorflow --output-folder build.tensorflow -c conda-forge

    Mac

    conda build --debug .conda.tensorflow_macos --output-folder build.tensorflow -c conda-forge
  4. Test the conda package:

    mamba create -n tf_build -c ./build.tensorflow -c conda-forge tensorflow