LiuDongdong

爱好由来落笔难,一诗千改心始安。

Ghost

Han, Kai, et al. “Ghostnet: More features from cheap operations.” Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2020. Paper: Ghost Summary apply a series of linear transformations with cheap cost to generate many ghost feature maps that could fully reveal information undelying intrinsic features; source code:https://github.com/huawei-noah/ghostnet

SerialOp

1. Serial Type 1.1. 物理接口形式 UART接口:通用异步收发器(Universal Asynchronous Receiver/Transmitter),UART是串口收发的逻辑电

DashBoard

HTML 几种dashboard 页面记录: https://github1s.com/h2oai/wave https://github.com/CreativeIT/material-angular-dashboard https://github.com/akveo/ngx-admin flask+json: https://github.com/christabor/flask_jsondash

OpenNREPaper

Han, X., Gao, T., Yao, Y., Ye, D., Liu, Z., & Sun, M. (2019). OpenNRE: An open and extensible toolkit for neural relation extraction. arXiv preprint arXiv:1909.13078. Paper: OpenNRE Summary train custom models to extract structured relational facts from the plain text, and supports quick model validation for researchers. source code: http://github.com/thunlp/OpenNRE, supports Entity-Oriented Application, Setence-Level Relation Extraction, Bag-Level Relation Extraction, Document-Level Relation Extraction, Few-Shot Relation Extraction, Architecture of OpenNRE

CharDataSimulation

1. 图片生成 利用电脑中字体文件生成a-z 字符图片数据。 # 测试文件 from PIL import Image, ImageDraw, ImageFont, ImageFilter import random import matplotlib.pyplot as plt import numpy as np import os # 随机字母: def rndChar(): return chr(random.randint(65, 90)) # 随机颜色1: def rndColor():

pyQt

1. 安装 pip install PyQt5 pip install PyQt5-tools #安装测试 import sys from PyQt5 import QtWidgets, QtCore app = QtWidgets.QApplication(sys.argv) widget = QtWidgets.QWidget() widget.resize(400, 400) widget.setWindowTitle('Hello World') widget.show() 2. 界面设计 使用qt designer 或者使用vscode集成的qt designer 进行ui控件等布局,正对
0%