# d2l-code **Repository Path**: JeffDingAI/d2l-code ## Basic Information - **Project Name**: d2l-code - **Description**: 主要存放学习动手学深度学习过程中的代码 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-03-21 - **Last Updated**: 2023-06-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 动手学深度学习-学习代码 ### 简介 主要存放学习动手学深度学习过程中的代码 ### 书籍网址 中文版:https://zh-v2.d2l.ai/ English Version:https://d2l.ai/ ### d2l目录 1. 安装d2l包 中文版: ```bash pip install d2l==0.17.6 ``` English Version: ```bash pip install d2l==1.0.0b0 ``` 2. d2l目录存放不同框架下的d2l包源代码 使用方法: ```python from d2l import 框架名 as d2l ``` 在这一段代码前加入以下代码即可引用d2l包 ```python import sys sys.path.append('../..') ``` ### 引用 ``` @article{zhang2021dive, title={Dive into Deep Learning}, author={Zhang, Aston and Lipton, Zachary C. and Li, Mu and Smola, Alexander J.}, journal={arXiv preprint arXiv:2106.11342}, year={2021} } ``` Mindspore部分代码来源于: ``` https://github.com/lvyufeng/d2l-mindspore ```