上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 参考文章 tensorflow+ssd_mobilenet实现目标检测的训练 TensorFlow基于ssd_mobilenet模型实现目标检测 使用TransferLearning实现环视图像的角点检测——Tensorflow+MobileNetv2_SSD MobileNet SSD V2模型的 阅读全文
posted @ 2019-11-14 17:02 阿夏z 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: 实现细节; 1.embedding 层 2.positional encoding层:添加位置信息 3,MultiHeadAttention层:encoder的self attention 4,sublayerConnection层:add&norm,使用layerNorm, 5,FeedForwa 阅读全文
posted @ 2019-10-10 18:25 阿夏z 阅读(5462) 评论(0) 推荐(0) 编辑
摘要: 使用tensorflow model库里的cifar10 多gpu训练时,最后测试发现时间并没有减少,反而更慢 参考以下两个链接 https://github.com/keras-team/keras/issues/9204 https://medium.com/@c_61011/why-multi 阅读全文
posted @ 2019-08-19 18:28 阿夏z 阅读(2823) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding: utf-8 -*- 2 3 import json 4 import os 5 import time 6 from multiprocessing import Pool 7 import multiprocessing 8 import requests 9 from selenium import webdriver ... 阅读全文
posted @ 2019-07-05 18:58 阿夏z 阅读(841) 评论(0) 推荐(0) 编辑
摘要: ~/.bashrc 末尾加入上述代码,然后source .bashrc生效即可 阅读全文
posted @ 2019-06-27 14:53 阿夏z 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-19 14:48 阿夏z 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 理论部分参考 推导 数学上的分析 代码 阅读全文
posted @ 2019-05-24 18:00 阿夏z 阅读(794) 评论(0) 推荐(0) 编辑
摘要: TestJNI.java javah -jni TestJNI 生成TestJNI.h,这个文件不用自己改,如下: 然后用c++实现JNICALL Java_TestJNI_test方法,注意c++类型和JNI类型的转换: 编译c++成.so文件,注意指定头文件路径,因为需要用到jni.h, jni 阅读全文
posted @ 2019-05-13 19:59 阿夏z 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1 cv::PCA pca(samples, cv::Mat(), cv::PCA::DATA_AS_ROW,100); 2 FileStorage fs("pca.xml",FileStorage::WRITE); 3 pca.write(fs); 4 fs.release(); 1 FileStorage fs("pca.xml",FileStorage::READ); 2... 阅读全文
posted @ 2019-04-25 16:04 阿夏z 阅读(500) 评论(0) 推荐(1) 编辑
摘要: 一个CMakeLists.txt的例子参考:https://www.hahack.com/codes/cmake/https://blog.csdn.net/afei__/article/details/81201039 项目目录 -test -include -math.hpp -src -mat 阅读全文
posted @ 2019-04-23 17:02 阿夏z 阅读(559) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页