LogoLogo
MarkovML HomeLogin to appSDK Docs
  • MarkovML Developer Hub
  • Guides
    • 🖥️Setup MarkovML SDK
      • Upgrading your SDK version
    • 📊Working with Datasets
      • Register Datasets
        • Register Access Credentials (Cloud Storage)
        • Register a Data Family
        • Register a Dataset
      • Read Datasets
        • List Datasets
        • Fetch Dataset
        • Download Dataset Segment
        • Get Dataset Preview
      • Compare Datasets
      • Data Quality
      • Data Family Operations
    • 📚Manage Models and Projects
      • Manage Projects
        • Create a Project
        • Access an existing Project
      • Track Experiments
        • Create Experiment Recorder
        • Add Records to an Experiment Recorder
        • Add Summary to an Experiment Recorder
        • Integrations
        • Examples
          • Image Classifier
      • Record Model Evaluations
        • Create an Evaluation Recorder
        • Add Evaluation Records
      • Complete Examples
        • Sentiment Classifier
        • MNIST Data Classifier
    • 📧Email Notification
  • Fundamentals
    • Datasets & Data Families
    • Projects
    • Models
    • Experiments
    • Model Evaluations
  • 📖CLI Docs
  • CHANGELOG
    • July 5, 2023
    • June 14, 2023
    • May 30, 2023
    • May 1, 2023
    • March 15 2023
    • March 2 2023
    • February 14 2023
    • January 12 2023
    • December 7 2022
    • November 17 2022
Powered by GitBook
On this page
  • Using the Web UI
  • Using the Python SDK

Was this helpful?

  1. Guides
  2. Manage Models and Projects
  3. Manage Projects

Create a Project

PreviousManage ProjectsNextAccess an existing Project

Last updated 1 year ago

Was this helpful?

You can create a new in two ways

Using the Web UI

Navigate to the Projects page and locate the Add Project button in the top-right corner. Click this button to open a dialog that will prompt you to create a new project.

Enter a name and brief description for the project, and confirm the visibility setting (public or private). Private projects are only visible to you. When you have finished, click the Create button to create the project.

Using the Python SDK

The code below illustrates how to create a new project using the MarkovML Python SDK.

from markov import Project, ProjectScope

# Create a new project
my_project = Project(
    # project name
    name="My first project",
    # Project description (optional)
    description="Test project",
    # project visibility (optional; public by default)
    project_scope=ProjectScope.PRIVATE,
)

# Register the project with  MarkovML backend. A registered project shows up in the
# MarkovML UI and can be used to create models, experiments and evaluations.
my_project.register()
📚
Project
Through a UI
Through Python SDK
New Project dialog