上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 20230412 jupyter notebook password 参考: [1] https://stackoverflow.com/questions/36312372/change-jupyter-notebook-server-password 阅读全文
posted @ 2023-04-12 13:27 xiaoxuxli 阅读(62) 评论(0) 推荐(0) 编辑
摘要: img = np.array([[1, 2], [3, 4]]) stacked_img = np.stack((img,)*3, axis=-1) print(stacked_img) OR import cv2 import cv color_img = cv2.cvtColor(gray_im 阅读全文
posted @ 2023-04-12 13:26 xiaoxuxli 阅读(12) 评论(0) 推荐(0) 编辑
摘要: (base)$ conda install nb_conda_kernels (base)$ conda create --name new-env (base)$ conda activate new-env (new-env)$ conda install ipykernel (base)$ c 阅读全文
posted @ 2023-04-12 13:26 xiaoxuxli 阅读(26) 评论(0) 推荐(0) 编辑
摘要: a = np.array([1, 3, 5, 6, 9, 10, 14, 15, 56]) np.where(np.logical_and(a>=6, a<=10)) --> (array([3, 4, 5]),) (a >= 6) & (a <=10) --> array([False, Fals 阅读全文
posted @ 2023-04-11 13:01 xiaoxuxli 阅读(9) 评论(0) 推荐(0) 编辑
摘要: import os root = "/Users/Siddhartha/Desktop/py scripts" for item in os.listdir(root): if not item.startswith('.') and os.path.isfile(os.path.join(root 阅读全文
posted @ 2023-03-24 08:27 xiaoxuxli 阅读(12) 评论(0) 推荐(0) 编辑
摘要: import os def list_files(startpath): for root, dirs, files in os.walk(startpath): level = root.replace(startpath, '').count(os.sep) indent = ' ' * 4 * 阅读全文
posted @ 2023-03-21 15:10 xiaoxuxli 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 20230321 5W1H分析法也叫六何分析法,是一种思考方法,也可以说是一种创造技法。在企业管理、日常工作生活和学习中得到广泛的应用。1932年,美国政治学家拉斯维尔提出“5W分析法”,后经过人们的不断运用和总结,逐步形成了一套成熟的“5W+IH”模式。 5W+1H:是对选定的项目、工序或操作,都 阅读全文
posted @ 2023-03-21 14:11 xiaoxuxli 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 20230320 git clone --branch <branchname> <remote-repo-url> or git clone -b <branchname> <remote-repo-url> example below: git clone -b passwordless-aut 阅读全文
posted @ 2023-03-20 13:14 xiaoxuxli 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 20230320 conda install和pip install安装到哪里 conda install xxx:这种方式安装的库都会放在anaconda3/pkgs目录下,这样的好处就是,当在某个环境下已经下载好了某个库,再在另一个环境中还需要这个库时,就可以直接从pkgs目录下将该库复制至新环 阅读全文
posted @ 2023-03-20 13:05 xiaoxuxli 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 20230320 conda create environment conda create --name arg_env_name 基于 python3.6 创建一个名为test_py3 的环境 conda create --name test_py3 python=3.6 基于 python2. 阅读全文
posted @ 2023-03-20 13:05 xiaoxuxli 阅读(195) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页