摘要: 谷歌搜索 Jupyter 默认工作目录的修改方法,找到以下 blog: 『修改Jupyter Notebook的默认工作目录_戴翔的技术博客-CSDN博客』 按方法修改之后默认目录没有改变, 最终发现原因在于没有将「%USERPROFILE%」添加至环境变量,添加环境变量之后即可生效。 ➤ 同时发现 阅读全文
posted @ 2021-11-05 12:09 harman-chen 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 算例:『Analyzing Models with TensorBoard - Deep Learning with Python, TensorFlow and Keras p.4 - YouTube』 ⚠ 执行 model.fit(X, y, batch_size=32, epochs=3, v 阅读全文
posted @ 2021-11-04 15:56 harman-chen 阅读(965) 评论(0) 推荐(0) 编辑
摘要: 懂的都懂,直接上链接: 『如何永久关闭windows安全中心? - 知乎』 阅读全文
posted @ 2021-10-18 19:45 harman-chen 阅读(78) 评论(0) 推荐(0) 编辑
摘要: ⚠ Git 中执行 $ git clone https://github.com/harmanchen/finding-lanes.git 失败,报错: OpenSSL SSL_read: Connection was reset, errno 10054 或者 Failed to connect 阅读全文
posted @ 2021-10-18 17:39 harman-chen 阅读(641) 评论(1) 推荐(0) 编辑
摘要: 『Convex Optimization Basics - YouTube』 【Convex Sets】Some properties: The empty set ∅ and ℝd are both convex. Preserved by scaling and translation. Int 阅读全文
posted @ 2021-09-12 19:36 harman-chen 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 以实现 x-y 坐标为例,定义一个类: 1 class Coordinate(object): 2 def __init__(self, x, y): 3 self.x = x 4 self.y = y 5 def distance(self, other): 6 x_diff_sq = (self 阅读全文
posted @ 2021-09-12 15:13 harman-chen 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 【Basic】 『List Comprehensions』 『Python 中 map(), filter(), reduce() 和 zip() 函数的用法』 『Python 中关于下划线 '_' 和 '__' 的命名方式』 【Pandas】 『Pandas 将 DateTime 分割为 Date 阅读全文
posted @ 2021-07-23 11:44 harman-chen 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 『PerceptiLabs官网』 环境搭建与安装: 首先在 Conda 中新建 PerceptiLabs 环境: conda create -n pl python=3.7 启用该环境: conda activate pl 在新建的「pl」环境中安装 PerceptiLabs: pip instal 阅读全文
posted @ 2021-07-22 15:42 harman-chen 阅读(231) 评论(0) 推荐(0) 编辑
摘要: NetworkX 图优化算例:『Intro to Graph Optimization with NetworkX in Python - DataCamp』 使用 networkx 版本为 2.4 版。 【1】g.node[nlrow['id']] = nlrow[1:].to_dict() 报错 阅读全文
posted @ 2021-07-20 22:05 harman-chen 阅读(150) 评论(0) 推荐(0) 编辑