openlayer.OpenlayerClient.create_project#
- OpenlayerClient.create_project(name, task_type, description=None)#
Creates a project on the Openlayer platform.
- Parameters:
- namestr
Name of your project.
Important
The project name must be unique in a user’s collection of projects.
- task_type
TaskType
Type of ML task for the project. E.g.
TaskType.TabularClassification
orTaskType.TextClassification
.- descriptionstr, optional
Project description.
- Returns:
- Project
An object that is used to interact with projects on the Openlayer platform.
Examples
Related guide: How to create and load projects.
Instantiate the client and create the project:
>>> import openlayer >>> from openlayer.tasks import TaskType >>> >>> client = openlayer.OpenlayerClient('YOUR_API_KEY_HERE') >>> >>> project = client.create_project( ... name="Churn prediction", ... task_type=TaskType.TabularClassification, ... description="My first error analysis playground", ... )
With the Project object, you are able to start adding models and datasets to it. Refer to
Project.add_model
andProject.add_dataset
orProject.add_dataframe
for detailed examples.