Fetch and View Project
You can access an existing project in two ways: through the Markov SDK or through the MarkovML UI.
Fetch Project using Markov SDK
With the Markov SDK, you can find a project either by its unique project ID or by its name.
1. Fetch Project using Project ID
Use the Project.get_by_id()
method to fetch the project using its ID, as shown below.
Sample Code
from markov import Project
# Get the details for a given project ID
project = Project.get_by_id("Insert Project_ID")
2. Fetch the Project using the Project Name
Use the Project.get_by_name()
method to fetch the project using its name, as shown below.
Sample Code
from markov import Project
# Get the details for a given project ID
project = Project.get_by_name("My Favorite Project")
Fetch and view Project using web UI
You can find all your projects on the Projects page. Here, you will see a list of projects you have access to, depending on whether they are public or private. Click on any project to view its details and explore associated Models, Experiments, or Evaluations.
Updated 10 days ago
What’s Next