Ontologies
Copy Ontologies
Get Started
- 1. Prerequisites and Installation
- 2. Import cloud data
- 3. Set up your Project and team
- Export Labels
General
SDK Ref
- EncordUserClient
- Bundle
- CloudUploadSettings
- MetadataSchema
- FilterPreset
- Storage
- Labels
- Ontology
- Project
- Workflows and Stages
Index
Projects
- Working with Projects
- Workflow Projects
- Attaching and Removing Datasets
- Converting Ontology Shapes
- Split Projects
- Convert Manual QA Projects into Workflow Projects
- Merge Projects
- Import CVAT
Labels
Datasets
Active API & SDK
Ontologies
Copy Ontologies
Copying an ontology allows you to make changes to the structure without affecting the projects that the original ontology is attached to.
from encord import EncordUserClient
user_client: EncordUserClient = EncordUserClient.create_with_ssh_private_key(
"<your_private_key>"
)
ontology = user_client.get_ontology("<ontology_hash>")
new_ontology = user_client.create_ontology(
"copy ontology",
description="<my ontology description>",
structure=ontology.structure,
)
Was this page helpful?