File tree Expand file tree Collapse file tree 6 files changed +18
-12
lines changed
Expand file tree Collapse file tree 6 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -1065,7 +1065,9 @@ print(f"二进制文件: {os.path.getsize('a.npy')} bytes") # ~80KB
10651065
10661066## Pandas
10671067
1068- Pandas 是基于 NumPy 构建的数据分析库,提供了高效、灵活的数据结构,让数据处理和分析变得更加简单。
1068+ [ Pandas] ( https://pandas.pydata.org/docs ) 是基于 NumPy 构建的数据分析库,提供了高效、灵活的数据结构,让数据处理和分析变得更加简单。
1069+
1070+ 推荐先在官方文档浏览API目录,可以快速这个这个框架的应用范围有个了解。再向下阅读常用的API使用方法。
10691071
10701072** Pandas 的核心数据结构:**
10711073- ** Series** :一维数据结构,带标签的数组(类似于 Excel 的一列)
Original file line number Diff line number Diff line change @@ -8,9 +8,14 @@ title: 算法通识
88本文面向初学者,由浅入深的给出一些算法题解,帮助你理解算法的基本概念和实现方式。
99
1010:::tip
11- 本篇内容主要参考《算法图解》,后续推荐[ labuladong的算法笔记] ( https://labuladong.online/zh/roadmap/ ) 。
11+ 本篇内容主要参考《算法图解》,后续推荐
12+
13+ - [ labuladong的算法笔记] ( https://labuladong.online/zh/roadmap/ )
14+ - [ Algorithms] ( https://thealgorithms.github.io/Python/DIRECTORY.html )
1215
1316如果你对算法产生了浓厚的兴趣,可以去参加[ LeetCode竞赛] ( https://leetcode.cn/contest/ ) ,赢取属于你的Offer和奖品。
17+
18+ 算法部分值得花1年以上的时间去探索。
1419:::
1520
1621## 基础
@@ -1358,5 +1363,3 @@ for word, length in result.items():
13581363best_word = max (result, key = result.get)
13591364print (" 最有可能是用户真正输入的单词是:" , best_word)
13601365```
1361-
1362- ## 降维算法
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ print(f"误差: {target_number - prediction}")
6565
6666许多著名的深度学习模型和框架都是基于 ` PyTorch(Torch) ` 二次开发的。例如:` YOLOv11 ` 、` Transformers (Hugging Face) ` 、` Stable Diffusion ` 等。还有一些开源项目使用` pytorch ` 构建出可用的多模态大模型。上限非常高。
6767
68- PyTorch 可以利用计算加速设备(例如GPU、NPU),为了达成这一目的,PyTorch 的安装会绑定对应的cuda版本,PyTorch 使用 cuda 的接口来操作底层硬件。
68+ [ PyTorch] ( https://pytorch.org ) 可以利用计算加速设备(例如GPU、NPU),为了达成这一目的,PyTorch 的安装会绑定对应的cuda版本,PyTorch 使用 cuda 的接口来操作底层硬件。
6969
7070:::info
7171
Original file line number Diff line number Diff line change @@ -429,9 +429,8 @@ docker-compose up -d
429429
430430# # k8s
431431
432- [Kubernetes](https://kubernetes.io/) 是一个开源的容器编排引擎,用来对容器化应用进行自动化部署、 扩缩和管理。在容器编排市场中占据了主导地位。
432+ [Kubernetes](https://kubernetes.io/zh-cn/docs/concepts/architecture/nodes/ ) 是一个开源的容器编排引擎,用来对容器化应用进行自动化部署、 扩缩和管理。在容器编排市场中占据了主导地位。
433433
434- Docker 负责制造一辆辆轻便的汽车,而 Kubernetes 则是一个复杂的交通管理系统,确保这些汽车能高效、有序地运行在道路上。
435-
436- 对容器编排感兴趣的可以前往官网深入学习。
434+ Docker 负责制造一辆辆轻便的汽车,而 Kubernetes 则是一个复杂的交通管理系统,确保这些汽车能高效、有序地运行在道路上。对容器编排感兴趣的可以前往官网深入学习。
437435
436+ 推荐与[深入高可用系统原理与设计](https://www.thebyte.com.cn/)这本书一同阅读。
Original file line number Diff line number Diff line change @@ -233,9 +233,11 @@ print(math.sqrt(16)) # 4.0
233233
234234## 第三方库
235235
236- 优秀的第三方库有很多,例如 [ awesome-python ] ( https://awesome-python.com/ ) 中列举了大量优秀的第三方库 。
236+ 默认情况下,我们下载的第三方库都来自于 [ PYPI ] ( https://pypi.org/ ) 。
237237
238- 你也可以通过[ pepy.tech] ( https://pepy.tech/ ) 查看某个包的下载量来侧面了解某个包的受欢迎程度。
238+ - [ awesome-python] ( https://awesome-python.com/ ) 中可以查看大众推荐的第三方库。
239+
240+ - [ pepy.tech] ( https://pepy.tech/ ) 可以查看某个包的下载量来侧面了解某个包的受欢迎程度。
239241
240242### 安装
241243
Original file line number Diff line number Diff line change @@ -647,6 +647,6 @@ def analyze_performance(metrics):
647647
648648
649649## 推荐阅读
650- - [ Python 3.14 官方文档 ] ( https://docs.python.org/3.14/ )
650+ - [ Python3官方文档 ] ( https://docs.python.org/zh-cn/3/library/index.html )
651651- [ 流畅的Python] ( https://weread.qq.com/web/reader/b64322b0813ab8ee3g018675/ )
652652- [ 码农高天 不基础的python基础] ( https://space.bilibili.com/245645656/lists/346060?type=season )
You can’t perform that action at this time.
0 commit comments