自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 资源 (27)
  • 收藏
  • 关注

原创 tensorflow初步

为了学习语义分割,想学习一下tensorflow了。tensorflow的官网为:https://tensorflow.google.cn/nvidia-docker run -it -p 8888:8888 -v /raid/zhaodz/tensorflow-latest/:/host  tensorflow/tensorflow:latest-gpu可以通过jupyter运行tensorfl...

2018-04-26 15:20:17 229

原创 bazel初步

bazel是google的一个编译器,本来是我在tensorflow做8bi量化的时候要使用的,以后工具类别的博客也会放到这个分类c++里面。bazel操作:pip install zip遇到问题:Package zip is not available, but is referred to by another package.This may mean that the package is...

2018-04-26 15:16:13 877

原创 source insight 初步入门

source insight真乃看代码的一个利器,相见恨晚啊。source insight 下载破解和安装 http://www.jb51.net/softs/548809.html1.新建工程2.添加文件tree3.查找最右project找file最左file找模块(如函数、类)中间文件内容找变量 右键 symbol info 显示符号的信息,以弹出框的形式 jump defination ...

2018-04-26 15:01:11 402

原创 caffe的batchnorm层解析

batch norm层batch norm有三组参数打印参数的流程为:>>> import sys>>> sys.path.insert(0,'./python')>>> import caffe>>> net = caffe.Net('./examples/mnist/lenet_train_test.prototxt','...

2018-04-26 14:55:33 731

原创 cuda使用thrust的api求一个向量的最值

懒得自己写了,就使用了thrust的api算了。还挺不错。cuda程序#include <thrust/extrema.h>#include <thrust/device_ptr.h>#include <iostream>int main(){ float* deviceArray; float max, test; int lengt...

2018-04-26 14:52:10 1092

原创 scrapy程序(scrapy)

 --》安装scrapy框架 先su一下吧 >>python python>import OpenSSL python>import OpenSSL python>quit() >>sudo apt-get install python-dev >>sudo apt-get install libevent-dev >>apt-ge...

2018-04-17 10:18:39 487

原创 scripy程序(scripy)

 --》保存为mat文件import numpy as npfrom scipy import ioa = np.array([[1,2],[3,4]])io.savemat('/home/zhaodz/tmp/a.mat', {'array': a})

2018-04-17 10:17:46 680

原创 python可以直接用的常用系统函数(python)

可以直接用的常用系统函数 len(变量)type(变量)sum(变量)不能直接用的需要导入的模块函数import mathmath.pow( , )  

2018-04-17 10:16:34 760

原创 python字符串的处理

 1.比较   可以直接用== 比较2.分割    直接a.split("分割") 

2018-04-17 10:15:52 160

原创 使用python脚本对文件处理

使用python脚本对文件处理import shutilimport osos.mkdir('file_400')fr = open("list.txt")lines = fr.readlines()i = 0fr_word = open('word.txt')lines_word =fr_word.readlines()for line in lines: line = ...

2018-04-17 10:15:10 794

原创 java的hello程序

纪念即将死去的javaimport Common;public class Simple{ public static void main(String[] args){ System.out.println("Hello World"); }}

2018-04-17 10:07:19 127

原创 使用eclipse和手工进行项目构建(java)

.新建名称为my的java项目2.在default package中新建名为Test的类输入import pack1.Test1;public class Test { public static void main(String[] args){ //System.out.println("hello,world!"); Test1 test = new Test1(); test.pri...

2018-04-17 10:05:52 215

原创 eclipse基本操作

android的java被被告了,不知道还会不会火,把以前的记录一下,纪念我将要死去的安卓。 --》eclipse中基本的java操作 1.File->NEW PROJECT,弹出对话框,输入项目名称 2.use defaultJRE(curren‘’),Project layout选择Create separete folders for sources and class files 3...

2018-04-17 10:04:44 384

原创 scala总结

 --》语言api说明文档http://www.scala-lang.org/files/archive/api/2.11.7/#package--》不用库最根本的类Any--》scala常用库scala.collection.mutable.Map(里面有zip)--》运行脚本scala分为脚本和程序运行scala脚本用  scala 文件名.scala--》通常Unit只用来声明函数或方法的返...

2018-04-17 10:00:44 276

原创 pyspark使用小结

 --》org.apache.spark帮助文档 http://spark.apache.org/docs/latest/api/scala/index.html#org.apache.spark.package--》帮助文档的使用在左侧搜索框中输入包名在右侧中查看相应函数及其用法例rdd中的RDD类具有函数repartition则输入rdd则会显示相应类RDD包-》类-》函数 的搜索--》spa...

2018-04-17 09:56:54 1532

原创 pyspark使用记录

2016年在清华研究--》启动python版的spark直接输入pyspark--》帮助pyspark --help---》执行python实例spark-submit /usr/local/spark-1.5.2-bin-hadoop2.6/examples/src/main/python/pi.py --》数据并行化,创建并行化集合输入pyspark>>>data=[1,2,...

2018-04-16 14:30:28 240

原创 hadoop小结

2016年在清华实习,研究大数据框架hadoop,总结了两段,其余都忘,珍惜。1.hadoop包括hdfs和mapreduce2.hadoop的配置文件 core-site.xml 和hdfs-xml,在安装目录hadooop-2.6.0/etc/conf/hadoop下3.对core-site.xml的配置举例:遵循 属性名称:属性值 的原则<configuration> &...

2018-04-16 14:28:49 294

原创 conda使用笔记

安装conda 下载 https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh bash Miniconda2-latest-Linux-x86_64.sh 指定目录是以当前目录为基本,如在/home/usr 中运行的,直接输入conda,保证conda在系统不存在,系统自动在usr中建立文件夹conda 注意要so...

2018-04-04 16:51:28 576

原创 面试题13

一直考链表的内容,但是链表的概念确实经常用,但是,都被封装实现了,在高级语言中。#include <stdio.h>using namespace std;struct ListNode{ int m_nValue; ListNode * m_pNext;};void DeleteNode(ListNode** pListHead, ListNode* pToBeDele...

2018-04-04 15:38:13 118

原创 面试题12

考虑大数问题,下面的代码只是对输入做了判断,但是没有考虑大数溢出的问题。// ConsoleApplication2.cpp : Defines the entry point for the console application.//#include "stdafx.h"/*程序特点:1.全面 1.考虑到很多情况,比如,此题如果只考虑大于0的情形,则不可以 2.错误处理2.高...

2018-04-04 11:55:58 122

原创 面试题11

专业写程序的人员写出的程序要1.全面2.高效部分代码为/*程序特点:1.全面 1.考虑到很多情况,比如,此题如果只考虑大于0的情形,则不可以 2.错误处理2.高效*/double Power(double base,int exponent){ double res = 1.0; if (exponent == 0){ return res; }if (exponent ...

2018-04-04 11:36:43 93

qt开发office文档编辑器思路

跟网上的一个qt网课班的老师要的,估计不咋样

2023-06-11

jbox2d内含jar包,在dist下

jbox2d内含jar包,在dist下,或者其他目录

2023-01-15

弱监督目标检测论文.rar

今天有群友反馈弱监督目标检测论文少,收集了部分最新的 cap2det谷歌结合文字信息进行弱监督检测.pdf ICCV2019一篇 instance-aware弱监督目标检测CVPR2020 清华大学弱监督2019 商汤AAAI2020 中科院利用弱监督目标检测中的不稳定性 抛砖引玉,没有积分直接添加微信seer_ai发送 更多内容加微信免费获取

2020-05-29

中科院利用弱监督目标检测中的不稳定性.pdf

Weakly supervised object detection (WSOD) focuses on training object detector with only image-level annotations, and is challenging due to the gap between the supervision and the objective. 更多内容添加微信 seer_ai

2020-05-29

商汤AAAI2020.pdf

Weakly supervised object detection (WSOD) using only image-level annotations has attracted growing attention over the past few years. Existing approaches using multiple instance learning easily fall into local optima, because such mechanism tends to learn from the most discriminative object in an image for each category.更多内容添加微信seer_ai

2020-05-29

清华大学弱监督2019.pdf

Weakly supervised object detection(WSOD) task uses only image-level annotations to train object detection task. WSOD does not require time-consuming instance-level annotations, so the study of this task has attracted more and more attention. Previous weakly supervised object detection methods iteratively update detectors and pseudo-labels, or use feature-based mask-out methods。 更多内容添加微信seer_ai

2020-05-29

instance-aware弱监督目标检测CVPR2020.pdf

Weaklysupervisedlearninghasemergedasacompelling tool for object detection by reducing the need for strong supervision during training. However, major challenges remain: (1) differentiation of object instances can be ambiguous; (2) detectors tend to focus on discriminative parts rather than entire objects; (3) without ground truth, object proposals have to be redundant for high recalls, causing significant memory consumption. 更多内容添加微信seer_ai

2020-05-29

ICCV2019.pdf

It is challenging for weakly supervised object detection network to precisely predict the positions of the objects, since there are no instance-level category annotations. Most existing methods tend to solve this problem by using a two-phase learning procedure, i.e., multiple instance learning detector followed by a fully supervised learning detector with bounding-box regression. 更多内容加微信 ai_seer

2020-05-29

cap2det谷歌结合文字信息进行弱监督检测.pdf

cap2det谷歌结合文字信息进行弱监督检测,Cap2Det:Learning to Amplify Weak Caption Supervision for Object Detection: This article exploits whole caption sentences to do weakly supervised object detection by encoding caption to predict ground truth image-level object detection labels with the help of traditional unsupervised object detection supervision. 更多资源请添加微信号seer_ai

2020-05-29

poly-yolo.pdf

与YOLOv3相比,训练参数只有60%,但MAP提高了60%,并提出更轻量版的Poly-YOLO Lite,与YOLOv3比有相同的京都的,但是更小更快,可应用到实力分割上,代码和论文刚开源!

2020-05-29

oCam_v475.0.exe

这是我用过的最好的录屏软件,完全免费,可以录声音和屏幕,做微课。

2019-10-13

light-head论文

论文,包括retinanet ,light-head rcnn yolo9000,yolov2四篇目标检测论文

2018-09-10

dorefa-net

包含难下载安装的tensorflow镜像和tensorpack,具体参照博客,https://blog.csdn.net/andeyeluguo/article/details/80986553

2018-07-10

vs社区版在线安装

在线安装vs2017,vs社区版在线安装。无激活码,可直接使用

2018-06-11

vivado2018-1的license文件

vivado2018-1的license文件,具体可以参照博客。https://blog.csdn.net/andeyeluguo/article/details/80656965

2018-06-11

mnist数据集为keras

keras的一个mnist例子,相当于学习keras的hello,world程序,具体代码见博客https://blog.csdn.net/andeyeluguo/article/details/80565012

2018-06-04

神经网络最经典书籍

很早之前的书籍,但是包含了卷积神经网络、网络剪枝等现在都很时髦的技术。非常惊艳,实在是神经网络必读书籍。

2018-05-24

物体检测论文集

包括rcnn,fast-rcnn faster-rcnn,mask-rcnn,yolov1-v3,ssd,fcn等

2018-04-28

神经网络模型压缩方法讲解二值三值DNS\INQ等

模型压缩ppt的总结,可以作为粗略的一个概述,很精炼。

2018-04-17

收集的专乎的一些代码

可以参考一下,具体例子自www.zhuanzhi.ai/,搜索pytorch,自动化所的一个博士写的

2017-10-10

类似于陌路人人的聊天源码

请在wamp下运行,首先修改common.php中的服务器密码,然后按照说明即可。 可以在同一机器上不同浏览器打开窗口实验.这个是我目前见过最好的代码。只是不能发表情和图片。

2017-07-28

一个群聊聊天室代码

能够完全运行的,具有客户端和服务端代码

2017-07-12

gate用户手册英文版

gate是自然语言处理的流水线工具,具有很高的参考价值,这个是英文原版的用户手册。

2017-07-11

图像描述标注工具

用一句话标注一句话的工具及其代码

2017-06-30

aflw的标注

aflw的标签数据,自己做的,带程序

2017-06-07

单词30万,适合自然处理和其他功能

30万单词

2017-04-05

FERET人脸数据库

FERET人脸数据库,80*80大小,200张人脸,每人7幅图片-feret face database,80*80

2015-08-13

原始MIT人脸库

原始MIT人脸库,其中包括人脸20*20的bmp格式2706幅图,以及非人脸20*20的bmp格式4381幅图-original MIT face database, including face folder and nonface folder

2015-08-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除