Example notebooks for the scivision project
This repo contains the following example notebooks, which can be run by clicking the binder links or locally with Jupyter notebook:
- How to use scivision: a notebook demonstrating essential scivision functionality, with image classification models. This can be run on Binder:
- Object detection with scivision
- [WIP] Image segmentation with scivision
- [WIP] Data plugin example (
stac.py
)
To run the notebooks in this repo locally, do the following:
- Open your terminal
- Check your conda installation with
conda --version
. If you don't have conda, install it by following these instructions - Clone the repository into your current folder
git clone https://github.com/scivision-gallery/scivision-basic-usage-examples
- Change directory to the cloned repository,
cd scivision-basic-usage-examples
. - Create an environment, scivision, for the notebooks:
conda env create -f environment.yml
- Activate it:
conda activate scivision
- Open the notebooks in this repo with
jupyter notebook
A full conda environment can be found in environment_full.yml
if you are having issues creating the conda environment.
This contains details of all the packages and their versions which are required to run these notebooks, including secondary and tertiary dependencies.
Visit the Scivision Gallery to see more examples and use-cases.