上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 用 Anaconda 完美解决 Python2 和 python3 共存问题 基于 python3.6 创建一个名为test_py3 的环境 conda create --name test_py3 python=3.6 基于 python2.7 创建一个名为test_py2 的环境 conda c 阅读全文
posted @ 2022-06-22 09:43 xiaoxuxli 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 自动生成命令行工具 -- fire Python 中用于生成命令行接口(Command Line Interfaces, CLIs)的工具已经有一些了,例如已经成为 Python 标准库的 argparse 和第三方的 click ,这些都是很不错的工具。但是这些工具为 Python 程序生成 CL 阅读全文
posted @ 2022-06-22 09:42 xiaoxuxli 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 获取命令行参数 import sys python可以使用sys.argv获取到命令行参数。sys.argv[0]表示代码本身文件路径,所有参数从1开始,一下例子说明,创建一个test.py文件 里面写下 #-*- coding: UTF-8 -*- import os,sys def sayHel 阅读全文
posted @ 2022-06-22 09:42 xiaoxuxli 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 训练集,测试集划分 如果只想划分一个训练集,测试集 from sklearn.model_selection import StratifiedShuffleSplit import numpy as np import os import shutil if name == "main": X = 阅读全文
posted @ 2022-06-22 09:41 xiaoxuxli 阅读(47) 评论(0) 推荐(0) 编辑
摘要: tmux 默认使用 Ctrl-b 作为激活快捷键的开关 运行 tmux $ tmux 显示所有会话 $ Ctrl-b s 或者 $ tmux ls 新建会话 使用 new 命令新建会话,并且该命令允许以参数的形式传递一个会话名。我的建议是在新建时要提供一个会话名以便于日后管理。 $ tmux new 阅读全文
posted @ 2022-06-16 19:07 xiaoxuxli 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 20220520 https://www.cnblogs.com/bigberg/p/6430095.html json import json with open('config/smith_mdct.json', 'r') as json_file: load_dict = json.load( 阅读全文
posted @ 2022-06-16 19:06 xiaoxuxli 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 20220601 https://mlhive.com/2022/02/read-and-write-pascal-voc-xml-annotations-in-python def get_bounding_box(xml_path): """ this function used for get 阅读全文
posted @ 2022-06-16 19:02 xiaoxuxli 阅读(61) 评论(0) 推荐(0) 编辑
摘要: yaml文件写入 Yaml文件写入 http://www.pythonck.com/archives/docs/1-2/15-2/15011-2 yaml_data = yaml_example_data left_bounding_box, right_bounding_box = get_bou 阅读全文
posted @ 2022-06-16 19:01 xiaoxuxli 阅读(346) 评论(0) 推荐(0) 编辑
摘要: if __name__ == 'main' 的作用 20220512 name 是当前模块名,当模块被直接运行时模块名为 main 。这句话的意思就是,当模块被直接运行时,以下代码块将被运行,当模块是被导入时,代码块不被运行。 阅读全文
posted @ 2022-06-16 19:00 xiaoxuxli 阅读(39) 评论(0) 推荐(0) 编辑
摘要: Pylint for code review 20220512 https://www.jianshu.com/p/6a313c843f0d 用法: pylint evaluation_and_generate_result.py --rcfile='pylint.conf' --disable=E 阅读全文
posted @ 2022-06-16 18:59 xiaoxuxli 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页