8000 [DOCS-1420] Document workspace and section media settings by mdlinville · Pull Request #1350 · wandb/docs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[DOCS-1420] Document workspace and section media settings #1350

New issue
8000

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load 8000 files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,12 @@ A line plot's individual settings override the line plot settings for the sectio
You can configure these settings for a line plot:

**Date**: Configure the plot's data-display details.
* **X**: Select the value to use for the X axis (defaults to **Step**). You can change the x-axis to **Relative Time** or select a custom axis based on values you log with W&B.
* **X axis**: Select the value to use for the X axis (defaults to **Step**). You can change the x-axis to **Relative Time** or select a custom axis based on values you log with W&B. You can also configure the X axis scale and range.
* **Relative Time (Wall)** is clock time since the process started, so if you started a run and resumed it a day later and logged something that would be plotted a 24hrs.
* **Relative Time (Process)** is time inside the running process, so if you started a run and ran for 10 seconds and resumed a day later that point would be plotted at 10s.
* **Wall Time** is minutes elapsed since the start of the first run on the graph.
* **Step** increments by default each time `wandb.log()` is called, and is supposed to reflect the number of training steps you've logged from your model.
* **Y**: Select one or more y-axes from the logged values, including metrics and hyperparameters that change over time.
* **X Axis** and **Y Axis** minimum and maximum values (optional).
* **Y axis**: Select one or more y-axes from the logged values, including metrics and hyperparameters that change over time. You can also configure the X axis scale and range.
* **Point aggregation method**. Either **Random sampling** (the default) or **Full fidelity**. Refer to [Sampling]({{< relref "sampling.md" >}}).
* **Smoothing**: Change the smoothing on the line plot. Defaults to **Time weighted EMA**. Other values include **No smoothing**, **Running average**, and **Gaussian**.
* **Outliers**: Rescale to exclude outliers from the default plot min and max scale.
Expand Down
16 changes: 16 additions & 0 deletions content/en/guides/models/app/features/panels/media.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,22 @@ Customize the display of the panel's individual items.
- **Images**: When **Fit media** is turned on, resize the panel's media to fit the panel's size.
- **Point clouds**: Optionally turn on the right-handed system for plotting points, rather than the default left-handed system.

### All media panels in a section
To customize the default settings for all media panels in a section, overriding workspace settings for media panels:
1. Click the section's gear icon to open its settings.
1. Click **Media settings**.
1. Within the drawer that appears, click the **Display** or **Layout** tab to configure the default media settings for the workspace. You can configure settings for images, videos, audio, and 3d objects. The settings that appear depend on the section's current media panels.

For details about each setting, refer to [Configure a media panel]({{< relref "#configure-a-media-panel" >}}).

### All media panels in a workspace
To customize the default settings for all media panels in a workspace:
1. Click the workspace's settings, which has a gear with the label **Settings**.
1. Click **Media settings**.
1. Within the drawer that appears, click the **Display** or **Layout** tab to configure the default media settings for the workspace. You can configure settings for images, videos, audio, and 3d objects. The settings that appear depend on the workspace's current media panels.

For details about each setting, refer to [Configure a media panel]({{< relref "#configure-a-media-panel" >}}).

## Interact with a media panel
- Click a media panel to view it in full screen mode.
- Use the stepper at the top of a media panel to step through media runs.
Expand Down
3828
0