This walkthrough takes you from zero to a running ML experiment using the OpenModelStudio UI.
Open http://localhost:31000 and sign in with the default credentials:
| Password | |
|---|---|
test@openmodel.studio |
Test1234 |
You land on the Dashboard with summary metrics and quick actions.
- Click Projects in the sidebar
- Click + New Project (top-right)
- Fill in:
- Name:
Titanic Survival - Description:
Predict passenger survival using Random Forest
- Name:
- Click Create
Your project now appears in the project grid. All models, datasets, jobs, and experiments will live under this project.
- Click Datasets in the sidebar
- Click + Upload Dataset
- Select your project (
Titanic Survival) - Name it
titanic - Upload your
titanic.csvfile (columns:Survived,Pclass,Age,Fare) - Click Upload
The dataset appears in the list with format, size, and version info.
- Click Workspaces in the sidebar
- Click + Launch Workspace
- Select JupyterLab as the IDE
- Select your project (
Titanic Survival) - Click Launch Workspace
The platform provisions a Kubernetes pod with JupyterLab. Once ready, the workspace loads inline. A welcome notebook is pre-loaded with the end-to-end modeling workflow.
Once your workspace is running, follow the Modeling Guide to train, evaluate, and track models using the SDK.