{ "cells": [ { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "%matplotlib inline" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n# Preparing your data for labelling\n\nThis example shows you how to go from your raw data to a project with your label\nstructure (ontology) defined, your dataset attached, and ready to be labelled.\n\n## Imports\n" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [ "from pathlib import Path\n\nfrom encord import Dataset, EncordUserClient, Project\nfrom encord.orm.dataset import CreateDatasetResponse, StorageLocation\nfrom encord.project_ontology.classification_type import ClassificationType\nfrom encord.project_ontology.object_type import ObjectShape\nfrom encord.utilities.project_user import ProjectUserRole" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Authenticating\n
To interact with Encord, you **need to first authenticate a client**. You can find more details\n `here