摘要:
ctrl+鼠标左键 进入方法 ctrl+alt+向左箭头 返回上一次光标所在位置 ctrl+alt+向右箭头 返回下一次光标所在位置 搜索注释,使用 Ctrl+Shift+F 阅读全文
摘要:
转换视频格式 .avi 转 .mp4 ffmpeg -i input.avi output.mp4 提取音频 默认mp4的audio codec是aac,一般常见的音频都是aac ffmpeg -i input.mp4 -acodec aac -vn output.aac 提取视频 ffmpeg - 阅读全文
摘要:
安装 设置Key Setup the package repository and the GPG key distribution=$(. /etc/os-release;echo $ID$VERSION_ID) \ && curl -fsSL https://nvidia.github.io/l 阅读全文
摘要:
简介 知识图谱嵌入(Knowledge Graph Embedding,KGE)模型中最常用的几个指标:MRR,MR,HITS@1,HITS@3,HITS@10. MRR(Mean Reciprocal Ranking) 其中$S$是三元组集合,$|S|$是三元组集合个数, $rank_i$是指第$ 阅读全文
摘要:
项目结构 包名需要以 test 开头 python 文件需要以 test_ 开头 例如 测试类以 Test 开头(需要继承 unittest.TestCase 类),内部的测试函数以 test 开头命名 常用函数 setUpClass 和 tearDownClass 分别用于测试类的开头和结尾要执行 阅读全文
摘要:
import os import logging class Logger: def __init__(self, save_path: str, mode: str = 'w', logger_name: str = ''): assert mode == 'w' or mode == 'a', 阅读全文
摘要:
符号 | 大写 | 小写 | 英文注音 | 国际音标注音 | | | | | | | Α | α | alpha | alfa | | Β | β | beta | beta | | Γ | γ | gamma | gamma | | Δ | δ | deta | delta | | Ε | ε | 阅读全文
摘要:
## 下载 [国内源下载-miniconda](https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/) 或 [国内源下载-anaconda](https://mirrors.tuna.tsinghua.edu.cn/anaconda/arc 阅读全文
摘要:
% Python各版本均可使用, 但不推荐使用 格式化的字符串与被格式化的值的位置必须一一对应 例如: print('name: %s, age: %s' % ('tom', '21')) | 符号 | 功能 | | :--: | : : | | %s | 格式化字符串 | | %d | 格式化整数 阅读全文
摘要:
import cv2 class WVideoManager: def __init__(self, write_path: str, width: int, height: int, FPS: int = 5, WinName: str = 'WVideoManager'): fourcc = c 阅读全文