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 web UI
  • Using Python SDK

Was this helpful?

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

Access an existing Project

PreviousCreate a ProjectNextTrack Experiments

Last updated 1 year ago

Was this helpful?

Existing projects can be accessed two ways

Using web UI

Navigate to the Projects page. All projects that you have access to will be listed here.

From the Projects page, click on any project in the list to view details about that project and to explore any Models, Experiments, or Evaluations associated with the project.

Using Python SDK

You can retrieve existing project using the project_id or it's name.

Retrieving by Project ID

from markov import Project

# Get the details for a given project ID
project = Project.get_by_id("4FzUBTJv8f9uPb")

Retrieving by Project Name

from markov import Project

# Get the details for a given project ID
project = Project.get_by_name("My Favorite Project")

User access to a project depends on the project's visibility (public or private). See the page for more details.

📚
Projects
Using UI
Using Python SDK
Projects page
Project Details page