Skip to content

Commit

Permalink
Built site for luz: 0.4.0.9000@68874e3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 15, 2023
1 parent bfa4c9e commit d5829cf
Show file tree
Hide file tree
Showing 15 changed files with 344 additions and 75 deletions.
234 changes: 234 additions & 0 deletions articles/examples/chargpt.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Hide empty <a> tag within highlighted CodeBlock for screen reader accessibility (see https://github.com/jgm/pandoc/issues/6352#issuecomment-626106786) -->
// v0.0.1
// Written by JooYoung Seo ([email protected]) and Atsushi Yasumoto on June 1st, 2020.

document.addEventListener('DOMContentLoaded', function() {
const codeList = document.getElementsByClassName("sourceCode");
for (var i = 0; i < codeList.length; i++) {
var linkList = codeList[i].getElementsByTagName('a');
for (var j = 0; j < linkList.length; j++) {
if (linkList[j].innerHTML === "") {
linkList[j].setAttribute('aria-hidden', 'true');
}
}
}
});
30 changes: 22 additions & 8 deletions articles/examples/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ pkgdown: 2.0.7.9000
pkgdown_sha: c9206802f2888992de92aa41f517ba7812f05331
articles:
accelerator: accelerator.html
chargpt: examples/chargpt.html
checkpoints: checkpoints.html
custom-loop: custom-loop.html
dogs-vs-cats-binary-classification: examples/dogs-vs-cats-binary-classification.html
Expand All @@ -17,5 +18,5 @@ articles:
mnist-triplet: examples/mnist-triplet.html
pets-unet: examples/pets-unet.html
text-classification: examples/text-classification.html
last_built: 2023-09-12T13:53Z
last_built: 2023-09-15T17:29Z

Binary file modified reference/lr_finder-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 10 additions & 10 deletions reference/luz_callback_auto_resume.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions reference/luz_callback_tfevents.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion reference/luz_metric_accuracy.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion reference/luz_metric_binary_accuracy.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion reference/luz_metric_binary_accuracy_with_logits.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion reference/luz_metric_mae.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d5829cf

Please sign in to comment.