> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-style-guide-models-runs-20260604-113608.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# View a specific run in a project

> Learn how to view a specific logged run and its properties using the W&B App or the LEET terminal UI.

View information about a specific run, such as its current state, artifacts, metrics, and more. Inspecting a run helps you monitor progress, debug experiments, and compare results. You can view and monitor runs using the W\&B App in your browser or the `wandb leet` terminal UI locally.

<Tabs>
  <Tab title="W&B App">
    To view a specific run in the W\&B App:

    1. Navigate to the [W\&B App](https://wandb.ai/home).
    2. Navigate to the W\&B project you specified when you initialized the run.
    3. Within the project sidebar, select the **Workspace** tab.
    4. Within the run selector, select the run you want to view, or enter a partial run name to filter for matching runs.

    Alternatively, you can directly access a specific run's workspace by entering its URL in your browser. The URL path of a specific run has the following format:

    ```text theme={null}
    https://wandb.ai/[TEAM-NAME]/[PROJECT-NAME]/runs/[RUN-ID]
    ```

    Replace the bracketed placeholders with the actual values of the team name, project name, and [run ID](/models/runs/run-identifiers#run-id).

    Explore the run's properties by navigating through the tabs: [Overview](/models/runs/view-logged-runs#overview), [Logs](/models/runs/view-logged-runs#logs), [Files](/models/runs/view-logged-runs#files), [Code](/models/runs/view-logged-runs#code), and [Artifacts](/models/runs/view-logged-runs#artifacts).
  </Tab>

  <Tab title="LEET">
    To view a run locally in your terminal using the `wandb leet` terminal UI:

    1. If you started the run locally from a script, navigate to the directory where you ran your code. It contains a `wandb/` directory with a subdirectory per run and a `latest-run/` symbolic link. Each run directory contains a transaction log named in the format `run-[RUN-ID].wandb`.

       If you didn't start the run locally but downloaded a `.wandb` transaction log file instead, make a note of its location.
    2. Start `wandb leet` using one of these commands:

       ```bash theme={null}
       # View the latest run, stored in ./wandb/latest-run/
       wandb leet

       # Specify a run directory
       wandb leet ./wandb/run-20250813_124246-n67z9ude

       # Specify a .wandb file
       wandb leet ./wandb/run-20250813_124246-n67z9ude/run-n67z9ude.wandb
       ```

    LEET displays a three-panel interface:

    * **Left panel**: Run overview with environment variables, configuration, and summary statistics.
    * **Center panel**: Metrics grid with Braille-style line charts showing your logged metrics.
    * **Right panel**: System metrics including GPU/CPU/RAM utilization.

    Get started with these keyboard shortcuts:

    * `h` or `?`: View all keyboard shortcuts.
    * `/`: Filter metrics by pattern.
    * `[` or `]`: Toggle left or right panels.
    * `n` or `N`: Navigate between metric pages.
    * `q` or `CMD+C`: Quit.

    See [LEET terminal UI](/models/app/leet-tui) for a full guide, or the [`wandb leet`](/models/ref/cli/wandb-beta/wandb-beta-leet) CLI reference for shortcut and configuration details.
  </Tab>
</Tabs>

After you open a run in the W\&B App, you can explore its details across several tabs. The following sections describe what each tab contains: **Overview**, **Logs**, **Files**, **Code**, and **Artifacts**.

## Overview

Use the **Overview** tab to learn about specific run information in a project, such as:

* **References**: Dictionary keys from your experiment's [config](/models/track/config) that you want to show prominently in the W\&B App. See [Highlight config values](/models/track/config#highlight-config-values) for more details.
* **Notes**: Any notes you added to the run. You can add notes to a run with the W\&B App or programmatically with the Python SDK.
* **Tags**: A list of strings. Tags are useful for organizing related runs together or applying temporary labels like `baseline` or `production`. You can add tags to a run with the W\&B App or programmatically with the Python SDK.
* **Author**: The W\&B entity that created the run.
* **Command**: The command that initialized the run.
* **Description**: A description of the run that you provided. If you don't specify a description when you create the run, this field is empty. You can add a description to a run with the W\&B App or programmatically with the Python SDK.
* **Tracked Hours**: The amount of time the run actively computes or logs data, excluding any pauses or waiting periods. This metric helps you understand the actual computational time spent on your run. W\&B doesn't bill you for tracked hours, which are unlimited for all plans.
* **Runtime**: The total time from the start to the end of the run. It's the wall-clock time for the run, including any time when the run is paused or waiting for resources. This metric provides the complete elapsed time for your run.
* **Git repository**: The Git repository associated with the run. To view this field, you must [enable Git](/platform/app/settings-page/user-settings/#personal-github-integration).
* **Host name**: Where W\&B computes the run. If you initialize the run locally on your machine, W\&B displays the name of your machine.
* **Name**: The name of the run.
* **OS**: The operating system that initialized the run.
* **Python executable**: The command that starts the run.
* **Python version**: The Python version that created the run.
* **Run path**: The unique run identifier in the form `entity/project/run-ID`.
* **Start time**: The timestamp when you initialize the run.
* **State**: The [state of the run](/models/runs/run-states).
* **System hardware**: The hardware W\&B uses to compute the run.
* **W\&B CLI version**: The W\&B CLI version installed on the machine that hosts the run command.
* **Git state**: The most recent Git commit SHA of a repository or working directory where you initialized the run. If you don't enable Git when you create the run, or if the Git information isn't available, this field is empty.

W\&B stores the following information below the **Overview** section:

* **Artifact Outputs**: Artifact outputs that the run produces.
* **Config**: List of config parameters saved with [`wandb.Run.config`](/models/track/config/).
* **Summary**: List of summary parameters saved with [`wandb.Run.log()`](/models/track/log/). By default, W\&B sets this value to the last value logged.

Use the search box above the **Config** and **Summary** sections to filter for specific parameters. For example, if you enter `acc` in the search box, W\&B filters for all parameters with `acc` in their name such as `accuracy` and `val_acc`.

<Note>
  W\&B doesn't search for nested config or summary parameters. For example, if you log a nested config parameter with `wandb.Run.config.update({"model": {"learning_rate": 0.01}})`, W\&B doesn't return the `learning_rate` parameter if you search for `learning_rate` in the search box. You can only find the `learning_rate` parameter by searching for `model`.
</Note>

See an [example project overview](https://wandb.ai/stacey/deep-drive/overview).

## Logs

The **Logs** tab shows output that the command line prints, such as the standard output (`stdout`) and standard error (`stderr`).

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-style-guide-models-runs-20260604-113608/mKqtgtuWRbdgi0HI/images/runs/run_logs_info.png?fit=max&auto=format&n=mKqtgtuWRbdgi0HI&q=85&s=da0f7774fa3590c034b07d3b8576c9c9" alt="The Logs tab showing standard output and standard error from a run" width="2788" height="1918" data-path="images/runs/run_logs_info.png" />
</Frame>

Select the **Download** button in the upper-right corner to download the log file.

See an [example logs tab](https://app.wandb.ai/stacey/deep-drive/runs/pr0os44x/logs).

## Files

Use the **Files** tab to view files associated with a specific run, such as model checkpoints, validation set examples, and more.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-style-guide-models-runs-20260604-113608/mKqtgtuWRbdgi0HI/images/runs/runs_files_info.png?fit=max&auto=format&n=mKqtgtuWRbdgi0HI&q=85&s=81184c9cf93f0f51fe0b30c2fe024fad" alt="The Files tab listing files associated with a run" width="2800" height="1558" data-path="images/runs/runs_files_info.png" />
</Frame>

See an [example files tab](https://app.wandb.ai/stacey/deep-drive/runs/pr0os44x/files/media/images).

## Code

The **Code** tab displays the code files associated with a specific run, including the main script and any additional code files in the run's environment. Reviewing these files helps you reproduce the run or trace results back to the exact code that produced them.

## Artifacts

The **Artifacts** tab lists the input and output [artifacts](/models/artifacts/) for the specified run.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541-style-guide-models-runs-20260604-113608/mKqtgtuWRbdgi0HI/images/runs/runs_artifacts_info.png?fit=max&auto=format&n=mKqtgtuWRbdgi0HI&q=85&s=5b4d7ffee32744e1f1cbecab76be0361" alt="The Artifacts tab listing input and output artifacts for a run" width="2806" height="1310" data-path="images/runs/runs_artifacts_info.png" />
</Frame>
