Skip to content

Commit cdd8507

Browse files
committed
(杂项更改)合并v1.17到主分支
2 parents c5b2262 + d56d746 commit cdd8507

File tree

501 files changed

+78108
-11755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

501 files changed

+78108
-11755
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
11
build/
2+
dist/
3+
docs/user_guide/.DS_Store
4+
docs/.DS_Store
5+
docs/.vuepress/theme
26
static/.DS_Store
37
static/images/.DS_Store
8+
.DS_Store
9+
.temp
10+
node_modules
11+
package-lock.json
12+
yarn.lock

Contribution.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# 翻译贡献指南
2+
3+
想要参与翻译的小伙伴,请注意。
4+
5+
参与翻译的提前技能有:[GitHub](https://zh.wikipedia.org/wiki/Github)[Git](https://zh.wikipedia.org/zh-hans/Git)[Markdown](https://zh.wikipedia.org/wiki/Markdown)[命令行操作](https://zh.wikipedia.org/wiki/%E5%91%BD%E4%BB%A4%E8%A1%8C)[英语](https://zh.wikipedia.org/wiki/%E8%8B%B1%E8%AF%AD)[Google翻译](https://translate.google.cn/)也可)
6+
7+
## Git教程
8+
9+
这里推荐一个很不错的开源Git教程:[https://github.com/geeeeeeeeek/git-recipes](https://github.com/geeeeeeeeek/git-recipes)
10+
11+
## Markdown教程
12+
13+
这里推荐一个不错的Markdown教程:[https://www.appinn.com/markdown/](https://www.appinn.com/markdown/)
14+
15+
在线编辑器推荐使用这个:[https://pandao.github.io/editor.md/](https://pandao.github.io/editor.md/)
16+
17+
## Github 贡献指南
18+
19+
了解github最好的方式是直接看[github官方的中文教程](https://help.github.com/cn)
20+
21+
想要贡献翻译,务必请熟知github的贡献规则,可以参看[怎么在GitHub上为开源项目作贡献?](https://zhuanlan.zhihu.com/p/23457016)
22+
23+
关于与原作者仓库同步的问题,强烈推荐一篇由Pandas中文文档翻译小组团队成员 [@Y-sir](https://github.com/Y-sir) 编写的文章:[Github上Fork别人的仓库,怎么保持自己的仓库内容和原始仓库同步](http://www.ysir308.com/archives/827)
24+
25+
## 文档如何在本地跑起来?
26+
27+
Pandas 中文文档的最新版本使用的是 [VuePress](https://v1.vuepress.vuejs.org/zh/) 文档生成工具来驱动的。
28+
29+
由于 [VuePress](https://v1.vuepress.vuejs.org/zh/) 是基于 [Nodejs](https://zh.wikipedia.org/wiki/Node.js) 编写的工具,如果你想让文档在本地运行调试,你首先需要安装 [Nodejs](http://nodejs.cn/) 在你的电脑上,非Windows操作系统推荐使用 [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md) 来安装 [Nodejs](http://nodejs.cn/) ,Windows操作系统的小伙伴可以直接下载最新版本的 Nodejs 的 [Windows 安装包](http://nodejs.cn/download/)
30+
31+
### 文档命令行说明
32+
33+
请先打开命令行或者终端工具,然后切换到文档所在的目录,然后运行以下功能命令。
34+
35+
#### 安装文档工具的依赖
36+
37+
这是拿到文档之后的第一步。
38+
39+
这个命令的作用是安装工具的依赖包,这是拿到文档之后**第一次**必须要运行的命令,且**只需要运行一次**,之后再翻译**无需**运行此命令。
40+
41+
``` bash
42+
$ npm install
43+
```
44+
45+
#### 运行本地环境
46+
47+
想要查看翻译的效果,可以运行下面这个命令。
48+
49+
``` bash
50+
$ npm run dev
51+
```
52+
53+
#### 生成静态html文件
54+
55+
``` bash
56+
$ npm run build
57+
```

README.md

Lines changed: 9 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,16 @@
1-
# numpy-cn
1+
# NumPy 中文文档
22

33
<p align="center">
4-
<img width="200" height="200" src="/static/images/numpy.logo.mini.png" alt="numpy中文文档logo" />
4+
<img width="200" height="200" src="./_logo/logo.png" alt="numpy中文文档logo" />
55
</p>
66

77
> Chinese (zh-cn) translation of the NumPy docs
8+
>
89
> numpy官方文档的中文版本
910
10-
[NumPy 中文文档](https://www.numpy.org.cn/)是使用markdown编写的技术文档,目前文档还处在翻译阶段,翻译程度大概在90%(包括全部的非API介绍的部分)
11+
当前版本 ``v1.17``
1112

12-
## 阅读导航
13-
14-
[NumPy中文文档](https://www.numpy.org.cn/)
15-
16-
- 如果你是使用手机预览,请点击左上角的菜单图标展开文档的菜单。
17-
- 如果你是新手朋友,推荐阅读基础文章中的:[理解Numpy](https://www.numpy.org.cn/article/basics/understanding_numpy.html)[NumPy简单入门教程](https://www.numpy.org.cn/article/basics/an_introduction_to_scientific_python_numpy.html)[创建Numpy数组的不同方式](https://www.numpy.org.cn/article/basics/different_ways_create_numpy_arrays.html)
18-
- 如果你想``徒手``(硬汉子)实现神经网络可以参看 [NumPy 与 神经网络](https://www.numpy.org.cn/article/advanced/numpy_kmeans.html)[ NumPy实现DNC、RNN和LSTM神经网络算法](https://www.numpy.org.cn/article/advanced/dnc_rnn_lstm.html)
19-
- 如果你是想来查找手册的,请指教点击左上角的搜索框进行搜索。
20-
- 如果你想系统的学习NumPy,请直接从本手册第一篇一直阅读到最后一篇,你可能不需要购买任何的收费书籍就可以学会。
21-
- 如果有疑问请在下方留言区留言或者加入我们的QQ/微信交流群。
22-
23-
## 捐赠项目
24-
25-
维护公益项目不易,你们的支持是我翻译的动力,目前正在制作中的有Pandas和Matplotlib的全中文文档!捐赠数额不限,特大数额可以获得首页鸣谢或全站推荐。
26-
27-
微信收款二维码 | 支付宝收款二维码
28-
---|---
29-
<img src="/static/images/wechat-qr.jpg" alt="微信收款二维码" width="130" height="130"> | <img src="/static/images/alipay-qr.jpg" alt="支付宝收款二维码" width="130" height="130">
30-
31-
## 交流方式
32-
33-
个人微信(可拉入群) | QQ群(需捐1元) | 微信群(可能失效)| 中国Sicpy科学计算社区
34-
---|---|---|---
35-
<img src="/static/images/wx-qr.jpg" alt="个人微信" width="130" height="130"> | <img src="/static/images/qqqun-qr.jpg" alt="qq群" width="130" height="130"> | <img src="/static/images/wxqun-qr.jpg" alt="微信群" width="130" height="130"> | <p><center>筹备中...</center></p><p><center>入群者优先获得内测资格</center></p>
36-
微信号:iamnotahacker | 群号:294639068 | -
37-
38-
- 联系邮箱:l@numpy.org.cn
39-
40-
## 贡献翻译与构建
41-
42-
本文档是基于[Teadocs](https://github.com/teadocs/teadocs)所构建。
43-
44-
如果你想贡献翻译,可以前往Teadocs文档生成工具的项目地址查看使用帮助,然后将你翻译的内容提交PR(包括不限于校对、翻译纠错),审核通过后我会把你加入贡献者/译者名单,感谢你对汉化数据科学开源领域的贡献。
45-
46-
构建命令:
47-
```
48-
teadocs build
49-
```
13+
更多信息请直接访问网站:[https://www.numpy.org.cn/](https://www.numpy.org.cn/)
5014

5115
## 版权信息
5216

@@ -55,6 +19,7 @@ teadocs build
5519
- 署名:必须提到原作者,提供指向此许可协议的链接,表明是否有做修改
5620
- 非商业性使用:不能对本作品进行任何形式的商业性使用
5721
- 相同方式共享:若对本作品进行了修改,必须以相同的许可协议共享
22+
<<<<<<< HEAD
5823

5924
## 特别赞助商
6025

@@ -78,4 +43,6 @@ teadocs build
7843
- [PyTorch 中文网](https://www.pytorchtutorial.com/)
7944
- [宽客在线](https://www.quantinfo.com/)
8045
- [机器人](http://www.ezist.cn/)
81-
- [python量化投资](https://www.lizenghai.com)
46+
- [python量化投资](https://www.lizenghai.com)
47+
=======
48+
>>>>>>> v1.17

_logo/logo.png

58.1 KB
Loading

_logo/logo_large.svg

Lines changed: 31 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)