Skip to content

Commit 460e524

Browse files
committed
Moving images to the _static directory.
1 parent d29c6a4 commit 460e524

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

docs/pre_executed/tensorboard_checkpoint_val_loss.png renamed to docs/_static/screenshots/tensorboard_checkpoint_val_loss.png

File renamed without changes.

docs/pre_executed/tensorboard_lr_history_cosine.png renamed to docs/_static/screenshots/tensorboard_lr_history_cosine.png

File renamed without changes.

docs/pre_executed/tensorboard_lr_history_exponential.png renamed to docs/_static/screenshots/tensorboard_lr_history_exponential.png

File renamed without changes.

docs/pre_executed/tensorboard_screenshot.JPG renamed to docs/archived_notebooks/pre_executed/tensorboard_screenshot.JPG

File renamed without changes.

docs/notebooks/using_tensorboard_and_mlflow.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"\n",
2424
"Whenever training or inference is completed, a `results` directory is generated that contains timestamped \"train\" and \"infer\" folders\n",
2525
"\n",
26-
"![results_dir.png](results_dir.png)"
26+
"![results_dir.png](../_static/screenshots/results_dir.png)"
2727
]
2828
},
2929
{
@@ -126,7 +126,7 @@
126126
"name": "python",
127127
"nbconvert_exporter": "python",
128128
"pygments_lexer": "ipython3",
129-
"version": "3.12.9"
129+
"version": "3.13.12"
130130
}
131131
},
132132
"nbformat": 4,

docs/pre_executed/hyrax_checkpointing.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
"source": [
121121
"The resumed training data will create its own timestamped results directory with new checkpoints and will not overwrite the previous one. Note that if a model that should run for `n` epochs finishes its training and the checkpoint is loaded with the number of epochs still being `n`, then the model will be trained for `n` more epochs. This can be seen in TensorBoard as well; the validation loss is plotted against each epoch and the red curve represents the validation loss from the initial training while the blue curve is the validation loss from the additional 3 epochs.\n",
122122
"\n",
123-
"![tensorboard_checkpoint_val_loss.png](tensorboard_checkpoint_val_loss.png)"
123+
"![tensorboard_checkpoint_val_loss.png](../_static/screenshots/tensorboard_checkpoint_val_loss.png)"
124124
]
125125
}
126126
],
@@ -140,7 +140,7 @@
140140
"name": "python",
141141
"nbconvert_exporter": "python",
142142
"pygments_lexer": "ipython3",
143-
"version": "3.12.12"
143+
"version": "3.13.12"
144144
}
145145
},
146146
"nbformat": 4,

docs/pre_executed/using_lr_schedulers.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
"source": [
272272
"The results may be a bit worse than without using the learning rate scheduler, but that is to be expected since we didn't really try doing any sort of tuning and just wanted to demonstrate the feature. We can also see the history of the learning rates in TensorBoard to verify that the scheduler did in fact have an effect. Orange curves belong to the original model and red curves pertain to the model with the updated scheduler:\n",
273273
"\n",
274-
"![tensorboard_lr_history_exponential.png](tensorboard_lr_history_exponential.png)"
274+
"![tensorboard_lr_history_exponential.png](../_static/screenshots/tensorboard_lr_history_exponential.png)"
275275
]
276276
},
277277
{
@@ -364,7 +364,7 @@
364364
"source": [
365365
"These results are also worse than before since we didn't do any tuning; the goal is simply to demonstrate using schedulers as a feature. The new pink curves on Tensorboard are from the model using CosineAnnealingLR:\n",
366366
"\n",
367-
"![tensorboard_lr_history_cosine.png](tensorboard_lr_history_cosine.png)"
367+
"![tensorboard_lr_history_cosine.png](../_static/screenshots/tensorboard_lr_history_cosine.png)"
368368
]
369369
},
370370
{
@@ -394,7 +394,7 @@
394394
"name": "python",
395395
"nbconvert_exporter": "python",
396396
"pygments_lexer": "ipython3",
397-
"version": "3.12.12"
397+
"version": "3.13.12"
398398
}
399399
},
400400
"nbformat": 4,

0 commit comments

Comments
 (0)