# paradox **Repository Path**: AITuring/paradox ## Basic Information - **Project Name**: paradox - **Description**: 用python3和numpy实现一个简单的深度学习框架,了解流行框架的原理。 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 65 - **Created**: 2017-11-13 - **Last Updated**: 2020-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Paradox 小型深度学习框架 ![Version](https://img.shields.io/badge/Version-0.2-blue.svg) ![Version](https://img.shields.io/badge/Python-3.5.0-green.svg) ![Version](https://img.shields.io/badge/Numpy-1.13.0-green.svg) > 用python3和numpy实现一个简单的深度学习框架。 ![LinearRegression](https://raw.githubusercontent.com/ictxiangxin/paradox/master/documentations/images/graph_example.png) * [代码示例](examples) * [使用文档](documentations) ## 依赖 | Name | Version | |--------|---------| | Python | 3.5.0+ | | Numpy | 1.13.0+ | ## 开始 ```python import paradox as pd k = pd.Constant([[2, 3], [1, 1]], name='k') b = pd.Constant([[7], [3]], name='b') x = pd.Variable([[0], [0]], name='x') y = k @ x + b print(pd.Engine(y).gradient(x).value) ``` 运行结果 ``` [[ 3.] [ 4.]] ``` ## 联系 | | | |--------|-------------------------| | Author | ict | | QQ | 405340537 | | E-mail | ictxiangxin@hotmail.com |