Skip to content

Commit 3930463

Browse files
committed
Merge branch 'main' into jiannanWang/examples
2 parents ca19641 + 6f79852 commit 3930463

20 files changed

+8
-2563
lines changed

.lintrunner.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ exclude_patterns = [
6262
"intermediate_source/pruning_tutorial.py",
6363
"intermediate_source/reinforcement_q_learning.py",
6464
"intermediate_source/tensorboard_profiler_tutorial.py",
65-
"intermediate_source/tiatoolbox_tutorial.rst",
6665
"intermediate_source/torch_compile_tutorial.py",
6766
"intermediate_source/transformer_building_blocks.py",
6867
"unstable_source/README.md",
@@ -74,7 +73,6 @@ exclude_patterns = [
7473
"unstable_source/max_autotune_on_CPU_tutorial.rst",
7574
"unstable_source/vmap_recipe.py",
7675
"recipes_source/README.txt",
77-
"recipes_source/amx.rst",
7876
"recipes_source/compiling_optimizer.rst",
7977
"recipes_source/compiling_optimizer_lr_scheduler.py",
8078
"recipes_source/distributed_optim_torchscript.rst",
@@ -203,7 +201,6 @@ exclude_patterns=[
203201
"intermediate_source/forced_alignment_with_torchaudio_tutorial.rst",
204202
"intermediate_source/nlp_from_scratch_index.rst",
205203
"intermediate_source/pipeline_tutorial.rst",
206-
"intermediate_source/tiatoolbox_tutorial.rst",
207204
"recipes_source/README.txt",
208205
"recipes_source/script_optimized.rst",
209206
"recipes_source/torch_compile_caching_configuration_tutorial.rst",
-103 KB
Binary file not shown.
-28.7 KB
Binary file not shown.
-726 KB
Binary file not shown.
-475 KB
Binary file not shown.
-475 KB
Binary file not shown.
-714 KB
Binary file not shown.

_static/tiatoolbox_tutorial.ipynb

Lines changed: 0 additions & 1 deletion
This file was deleted.

beginner_source/basics/saveloadrun_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# below we use ``weights_only=False`` because this involves loading the
6363
# model, which is a legacy use case for ``torch.save``.
6464

65-
model = torch.load('model.pth', weights_only=False),
65+
model = torch.load('model.pth', weights_only=False)
6666

6767
########################
6868
# .. note:: This approach uses Python `pickle <https://docs.python.org/3/library/pickle.html>`_ module when serializing the model, thus it relies on the actual class definition to be available when loading the model.

beginner_source/hybrid_frontend/README.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)