摘要: 移动设备 在 iOS 上进行图像分割 DeepLabV3 原文:pytorch.org/tutorials/beginner/deeplabv3_on_ios.html 译者:飞龙 协议:CC BY-NC-SA 4.0 作者:Jeff Tang 审阅者:Jeremiah Chung 介绍 语义图像分 阅读全文
posted @ 2024-02-04 19:17 绝不原创的飞龙 阅读(320) 评论(0) 推荐(0)
摘要: 使用 RPC 进行分布式管道并行 原文:pytorch.org/tutorials/intermediate/dist_pipeline_parallel_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 作者:Shen Li 注意 在github中查看并编辑本教程。 先 阅读全文
posted @ 2024-02-04 19:16 绝不原创的飞龙 阅读(147) 评论(0) 推荐(0)
摘要: 开始使用完全分片数据并行(FSDP) 原文:pytorch.org/tutorials/intermediate/FSDP_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 作者:Hamid Shojanazeri,Yanli Zhao,Shen Li 注意 在githu 阅读全文
posted @ 2024-02-04 19:14 绝不原创的飞龙 阅读(798) 评论(0) 推荐(0)
摘要: (Beta)使用缩放点积注意力(SDPA)实现高性能 Transformer 原文:pytorch.org/tutorials/intermediate/scaled_dot_product_attention_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击 阅读全文
posted @ 2024-02-04 19:12 绝不原创的飞龙 阅读(541) 评论(0) 推荐(0)
摘要: 介绍 torch.compile 原文:pytorch.org/tutorials/intermediate/torch_compile_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整的示例代码 作者: William Wen torch.com 阅读全文
posted @ 2024-02-04 19:09 绝不原创的飞龙 阅读(783) 评论(0) 推荐(0)
摘要: (beta)计算机视觉的量化迁移学习教程 原文:pytorch.org/tutorials/intermediate/quantized_transfer_learning_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 提示 为了充分利用本教程,我们建议使用这个Col 阅读全文
posted @ 2024-02-04 19:06 绝不原创的飞龙 阅读(187) 评论(0) 推荐(0)
摘要: 参数化教程 原文: 译者:飞龙 协议:CC BY-NC-SA 4.0 作者:Mario Lezcano 注意 点击这里下载完整示例代码 在本教程中,您将学习如何实现并使用此模式来对模型进行约束。这样做就像编写自己的nn.Module一样容易。 对深度学习模型进行正则化是一项令人惊讶的挑战。传统技术, 阅读全文
posted @ 2024-02-04 19:05 绝不原创的飞龙 阅读(185) 评论(0) 推荐(0)
摘要: 在 C++中注册一个分发的运算符 原文:pytorch.org/tutorials/advanced/dispatcher.html 译者:飞龙 协议:CC BY-NC-SA 4.0 分发器是 PyTorch 的一个内部组件,负责确定在调用诸如torch::add这样的函数时实际运行哪些代码。这可能 阅读全文
posted @ 2024-02-04 19:02 绝不原创的飞龙 阅读(689) 评论(0) 推荐(0)
摘要: 自定义 C++和 CUDA 扩展 原文:pytorch.org/tutorials/advanced/cpp_extension.html 译者:飞龙 协议:CC BY-NC-SA 4.0 作者:Peter Goldsborough PyTorch 提供了大量与神经网络、任意张量代数、数据处理和其他 阅读全文
posted @ 2024-02-04 18:59 绝不原创的飞龙 阅读(271) 评论(0) 推荐(0)
摘要: 使用 PyTorch C++ 前端 原文:pytorch.org/tutorials/advanced/cpp_frontend.html 译者:飞龙 协议:CC BY-NC-SA 4.0 PyTorch C++ 前端是 PyTorch 机器学习框架的纯 C++ 接口。虽然 PyTorch 的主要接 阅读全文
posted @ 2024-02-04 18:57 绝不原创的飞龙 阅读(154) 评论(0) 推荐(0)
摘要: 在生产环境中部署 PyTorch 模型 通过 Flask 在 Python 中部署 PyTorch 的 REST API 原文:pytorch.org/tutorials/intermediate/flask_rest_api_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4 阅读全文
posted @ 2024-02-04 18:54 绝不原创的飞龙 阅读(237) 评论(0) 推荐(0)
摘要: 使用整体追踪分析的追踪差异 原文:pytorch.org/tutorials/beginner/hta_trace_diff_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 作者: Anupam Bhatnagar 有时,用户需要识别由代码更改导致的 PyTorch 操 阅读全文
posted @ 2024-02-04 18:53 绝不原创的飞龙 阅读(170) 评论(0) 推荐(0)
摘要: 训练一个玛丽奥玩游戏的 RL 代理 原文:pytorch.org/tutorials/intermediate/mario_rl_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整的示例代码 作者: 冯元松, Suraj Subramanian, 王 阅读全文
posted @ 2024-02-04 18:49 绝不原创的飞龙 阅读(182) 评论(0) 推荐(0)
摘要: 使用 torchtext 库进行文本分类 原文:pytorch.org/tutorials/beginner/text_sentiment_ngrams_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整示例代码 在本教程中,我们将展示如何使用 to 阅读全文
posted @ 2024-02-04 18:46 绝不原创的飞龙 阅读(385) 评论(0) 推荐(0)
摘要: 音频 音频 I/O pytorch.org/tutorials/beginner/audio_io_tutorial.html 此教程已移至pytorch.org/audio/stable/tutorials/audio_io_tutorial.html 3 秒后将重定向。 音频重采样 原文:pyt 阅读全文
posted @ 2024-02-04 18:44 绝不原创的飞龙 阅读(251) 评论(0) 推荐(0)
摘要: 对抗性示例生成 原文:pytorch.org/tutorials/beginner/fgsm_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整的示例代码 作者: Nathan Inkawhich 如果您正在阅读本文,希望您能欣赏一些机器学习模型的有 阅读全文
posted @ 2024-02-04 18:42 绝不原创的飞龙 阅读(144) 评论(0) 推荐(0)
摘要: torch.nn 到底是什么? 原文:pytorch.org/tutorials/beginner/nn_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整示例代码 作者: Jeremy Howard,fast.ai。感谢 Rachel Thomas 阅读全文
posted @ 2024-02-04 18:40 绝不原创的飞龙 阅读(305) 评论(0) 推荐(0)
摘要: 使用 PyTorch 构建模型 原文:pytorch.org/tutorials/beginner/introyt/modelsyt_tutorial.html 译者:飞龙 协议:CC BY-NC-SA 4.0 注意 点击这里下载完整示例代码 介绍 || 张量 || 自动微分 || 构建模型 || 阅读全文
posted @ 2024-02-04 18:38 绝不原创的飞龙 阅读(139) 评论(0) 推荐(0)
摘要: 在 YouTube 上介绍 PyTorch PyTorch 介绍 - YouTube 系列 原文:pytorch.org/tutorials/beginner/introyt.html 译者:飞龙 协议:CC BY-NC-SA 4.0 介绍 || 张量 || 自动微分 || 构建模型 || Tens 阅读全文
posted @ 2024-02-04 18:35 绝不原创的飞龙 阅读(245) 评论(0) 推荐(0)
摘要: PyTorch 秘籍 PyTorch 秘籍 原文:pytorch.org/tutorials/recipes/recipes_index.html 译者:飞龙 协议:CC BY-NC-SA 4.0 秘籍是关于如何使用特定 PyTorch 功能的简短、可操作的示例,与我们的全长教程不同。 PyTorc 阅读全文
posted @ 2024-02-04 18:33 绝不原创的飞龙 阅读(217) 评论(0) 推荐(0)