Notebooks and utilities for the ocean cleanup project.
https://github.com/kili-technology/kili-python-sdk https://pypi.org/project/kili/
https://github.com/kili-technology/automl
python version = ^3.9
Create a kili community account here.
Create a kili client api key here.
Set api key in your env:
export KILI_API_KEY='<you_api_key_here>'
Assumes usage of conda for managing the env.
Create an env and install dependencies:
conda create -n ocean-cleaup python=3.9.11
conda activate ocean-cleanup
poetry config virtualenvs.create false
poetry install
First, you'll need to make sure that you can use your conda env in a notebook run locally.
conda install ipykernel
ipython kernel install --user --name=ocean-cleanup
Then, start up jupyter.
jupyter lab
Under the notebooks
directory, there is a notebook called kili_api_hello_world.ipynb.
This is a very simple notebook, but will allow users to confirm that they can create a python client and authenticate it.