LiuDongdong

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

tensorboard

1. 仪表板 Scalars 显示损失和指标在每个时期如何变化。 您还可以使用它来跟踪训练速度,学习率和其他标量值。 Graphs 可帮助您可视化模型。 在这种情况下,将显示层的

TFLearn

TFlearn is a modular and transparent deep learning library built on top of Tensorflow. It was designed to provide a higher-level API to TensorFlow in order to facilitate and speed-up experimentations, while remaining fully transparent and compatible with it. 1. layers File Layers core input_data, fully_connected, dropout, custom_layer, reshape, flatten, activation, single_unit, highway, one_hot_encoding, time_distributed conv conv_2d, conv_2d_transpose, max_pool_2d, avg_pool_2d, upsample_2d, conv_1d, max_pool_1d, avg_pool_1d, residual_block, residual_bottleneck, conv_3d, max_pool_3d, avg_pool_3d, highway_conv_1d,

TemplateMatching

1. 识别空的货架空间 如果使用模板匹配,轻微倾斜/移动,就很难找到这种方法。我们需要多个不同尺寸的模板来捕获这张图片中的所有空货架区域。 import cv2 import matplotlib.pyplot

YOLO4 Object Detection

Yolo5 自定义数据检测教程: https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data google云盘教程: https://colab.research.google.com/github/ultralytics/yolov5/blob/master/tutorial.ipynb#scrollTo=V0AJnSeCIHyJ 1. Darknet ​ darknet是一个较为轻型的完全基于C与CUDA的开源深度学习框架,其主要特点就是容

Typoro Command

​ Typora 是一个 Markdown 文本编辑器,它支持且仅支持 Markdown 语法的文本编辑。在 Typora 官网 上他们将 Typora 描述为 「A truly minimal markdown editor. 」 1. 安装 #1 安装依赖包 sudo apt-get install libapt-pkg-dev #2 安装、更新 sudo apt-get install apt-transport-https

StreamAnalyse-BloomFilter

A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. a query returns either “possibly in set” or “definitely not in set”. the shortcoming of this structure is that the more elements that are added to the set, the larger the probability of false positives. and , Bloom filters do
0%