TensorRT/parsers/caffe/binaryProtoBlob.h源碼研讀TensorRT/parsers/caffe/binaryProtoBlob.h繼承IBinaryProtoBlobdelete this參考連結TensorRT/parsers/caffe/binaryProtoBlob.h
/** Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.** Licensed under the A…
mining_type参数详解:
// Mining type during training.
// NONE : use all negatives.
// MAX_NEGATIVE : select negatives based on the score.
// HARD_EXAMPLE : select hard examples based on "Training Region-based Object Detectors with Online Ha…
1. 首先看 Blobs, Layers, and Nets
Caffe stores, communicates, and manipulates the information as blobs: the blob is the standard array and unified memory interface for the framework. The layer comes next as the foundation of both model and computation. Th…
深度学习: 1 three steps for deeping learning: define a setof function–>goodness of function–>pick the best function 1-1 neural network parameters each neurons can have different values of weights and biases. feed forward vector 1-2 three…
由于caffe(GitHub - BVLC/caffe: Caffe: a fast open framework for deep learning.)使用的python版本是2.7,而非python3,所以安装的时候使用命令:sudo apt install python2.7进行安装。
而在安装python的各种包时&am…
coeff should be empty or be the same size with bottomcoeff only be used with SUM operationtop and all bottoms are the same sizeoperations top[0] PROD(bottom[:])top[0] SUM(coeff[i]*bottom[i])
首先祭出caffe.proto中对于solver.prototxt的一些参数定义: // The number of iterations for each test net.repeated int32 test_iter 3;// The number of iterations between two testing phases.optional int32 test_interval 4 [default 0];optional bool t…
MNIST(Mixed National Institute of Standards and Technology)是一个大型的手写体数字数据库,广泛应用于机器学习领域的训练和测试,由纽约大学Yann LeCun教授整理. MNIST包括60000张训练图片和10000张测试图片,每张图…
刚看完Caffe官网example中的LeNet Tutorial
首先,搞清楚LeNet的结构,很简单,就是convpoolconvpoolfcfc In general, it consists of a convolutional layer followed by a pooling layer, another convolution layer followed by a pooling …
TensorRT/parsers/caffe/caffeWeightFactory/caffeWeightFactory.h,caffeWeightFactory.cpp源碼研讀三前言TensorRT/parsers/caffe/caffeWeightFactory/caffeWeightFactory.cpp0ULNVCaffe v.s. old BVLCreinterpret_caststatic member function參考連結前言
接上上…
警告
WARNING:root:This caffe2 python run does not have GPU support. Will run in CPU only mode.
出现上面的问题的话, 首先看看是不是没有安装NCCL, 如果没有安装的话, 安装以后应该就能好使
报错
使用下面的指令测试caffe安装是否成功
python -c from caffe2.python…
英文原文链接: U-Net: Convolutional Networks for Biomedical Image Segmentation
Author—Olaf Ronneberger, Philipp Fischer, and Thomas Brox Computer Science Department and BIOSS Centre for Biological Signalling Studies, University of Freiburg, Germany ronne…
摘要
Caffe(Convolutional Architecture for Fast Feature Embedding)是一个清晰,模块化,速度快的深度学习框架。“跨平台Caffe及I/O模型与并行方案”系列文章针对Caffe依赖包繁杂,可移植性差的缺点,介绍一种采用第三方库的跨平台…
git clone -b ssd https://github.com/weiliu89/caffe.git caffe_ssdcd caffe_ssdcp caffe/Makefile.config caffe_ssd/# 把 cuda 和 cudnn 关了,用 cpu 版本的就好了
make -j32
make pycaffemake test -j8
make runtest -j8
vim ~/.bashrc# 加入
export LD_LIBRAR…
1. 复现报错解决
1.1 sh build_and_install.sh错误
复现PointRcnn时,安装 sh build_and_install.sh时出现Fatal error: cuda.h, No such file or directory,以下方法解决。
1.在~/.bashrc中设置环境变量
export CUDA_HOME/home/usr/local/cuda-10.0
…
dog-qiuqiu/Yolo-FastestV2: Based on Yolos low-power, ultra-lightweight universal target detection algorithm, the parameter is only 250k, and the speed of the smart phone mobile terminal can reach ~300fps (github.com)
转模型使用的是这个项目:
xx…
下面报错是因为 maven 没有加入 spring-boot-starter-cache No cache manager could be auto-configured, check your configuration (caching type is ‘CAFFEINE’) maven 配置 <dependency><groupId>org.springframework.boot</groupId><artifactId>…
论文地址:https://openaccess.thecvf.com/content_cvpr_2018/papers/Sun_Optical_Flow_Guided_CVPR_2018_paper.pdf
这个 repo 包含论文的实现代码:
Optical Flow Guided Feature: A Fast and Robust Motion Representation for Video Action Recognition,Shuyang Sun,Zh…