上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 94 下一页
摘要: #!/usr/bin/python# -*- coding: utf-8 -*- import tensorflow as tf class TRNNConfig(object): """RNN配置参数""" # 模型参数 embedding_dim = 64 # 词向量维度 seq_length 阅读全文
posted @ 2019-05-23 17:15 西北逍遥 阅读(899) 评论(0) 推荐(0) 编辑
摘要: if (vcrealsensethread != Q_NULLPTR) { if (vcrealsensethread->isRunning()) { vcrealsensethread->terminate(); } } 阅读全文
posted @ 2019-05-21 21:08 西北逍遥 阅读(135) 评论(0) 推荐(0) 编辑
摘要: (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faster_RCNN/models/research$ (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faste 阅读全文
posted @ 2019-05-20 07:22 西北逍遥 阅读(865) 评论(0) 推荐(0) 编辑
摘要: https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md python object_detection/model_main_2019051801. 阅读全文
posted @ 2019-05-19 10:39 西北逍遥 阅读(728) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dy_guox/article/details/79111949 luo@luo-All-Series:~$ luo@luo-All-Series:~$ source activate t20190518(t20190518) luo@luo-All-Se 阅读全文
posted @ 2019-05-19 10:34 西北逍遥 阅读(420) 评论(0) 推荐(0) 编辑
摘要: (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Ser 阅读全文
posted @ 2019-05-19 10:04 西北逍遥 阅读(1937) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_24474463/article/details/81530900 (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faster_RCNN/models/research$ (t20 阅读全文
posted @ 2019-05-18 21:14 西北逍遥 阅读(345) 评论(0) 推荐(0) 编辑
摘要: luo@luo-All-Series:~/MyFile/Anaconda3$ luo@luo-All-Series:~/MyFile/Anaconda3$ luo@luo-All-Series:~/MyFile/Anaconda3$ conda create -n t20190518 python= 阅读全文
posted @ 2019-05-18 15:52 西北逍遥 阅读(196) 评论(0) 推荐(0) 编辑
摘要: “AnalysisPtsDataTool201905.exe”(Win32): 已加载“F:\OpencvProject\ZY-Project\x64\Debug\AnalysisPtsDataTool201905.exe”。已加载符号。“AnalysisPtsDataTool201905.exe” 阅读全文
posted @ 2019-05-17 12:01 西北逍遥 阅读(5358) 评论(0) 推荐(0) 编辑
摘要: //打开Pts文件按钮点击事件void AnalysisPtsDataTool201905::OnOpenFileButtonClick(){ qDebug()<<"open file..."; //定义文件对话框类 QFileDialog *fileDialog = new QFileDialog 阅读全文
posted @ 2019-05-17 10:45 西北逍遥 阅读(9603) 评论(0) 推荐(0) 编辑
摘要: 在头文件中加入 #if _MSC_VER >= 1600 #pragma execution_character_set("utf-8") #endif 阅读全文
posted @ 2019-05-17 09:20 西北逍遥 阅读(703) 评论(0) 推荐(0) 编辑
摘要: (flappbird) luo@luo-All-Series:~/MyFile/tf-faster-rcnn_box$ (flappbird) luo@luo-All-Series:~/MyFile/tf-faster-rcnn_box$ (flappbird) luo@luo-All-Series 阅读全文
posted @ 2019-05-17 07:38 西北逍遥 阅读(700) 评论(0) 推荐(0) 编辑
摘要: openscenegraph 3.6.3 链接:https://pan.baidu.com/s/1CyhGsS4qVckQq29eel3DvQ 提取码:mnqt --来自百度网盘超级会员的分享 openscenegraph 3.4 链接:https://pan.baidu.com/s/1CDZj4C 阅读全文
posted @ 2019-05-16 19:55 西北逍遥 阅读(2910) 评论(3) 推荐(3) 编辑
摘要: import tensorflow as tf #from create_tf_record import * from tensorflow.python.framework import graph_util def freeze_graph(input_checkpoint,output_gr 阅读全文
posted @ 2019-05-16 14:43 西北逍遥 阅读(538) 评论(0) 推荐(0) 编辑
摘要: from tensorflow.python import pywrap_tensorflowimport os checkpoint_path=os.path.join('output/res101/voc_2007_trainval+voc_2012_trainval/default/res10 阅读全文
posted @ 2019-05-16 14:40 西北逍遥 阅读(1528) 评论(0) 推荐(0) 编辑
摘要: (flappbird) luo@luo-All-Series:~/MyFile/tf-faster-rcnn_box$ (flappbird) luo@luo-All-Series:~/MyFile/tf-faster-rcnn_box$ (flappbird) luo@luo-All-Series 阅读全文
posted @ 2019-05-16 14:37 西北逍遥 阅读(279) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash set -x set -e export PYTHONUNBUFFERED="True" GPU_ID=$1 DATASET=$2 NET=$3 array=( $@ ) len=${#array[@]} EXTRA_ARGS=${array[@]:3:$len} EXTRA 阅读全文
posted @ 2019-05-16 14:23 西北逍遥 阅读(615) 评论(0) 推荐(0) 编辑
摘要: python demo_2019051601.pyTraceback (most recent call last): File "demo_2019051601.py", line 128, in <module> 'our server and place them properly?').fo 阅读全文
posted @ 2019-05-16 14:04 西北逍遥 阅读(1152) 评论(0) 推荐(0) 编辑
摘要: ERROR: Complete output from command python setup.py egg_info:ERROR: Traceback (most recent call last):File "", line 1, in File "/tmp/pip-install-x6tql 阅读全文
posted @ 2019-05-15 21:31 西北逍遥 阅读(608) 评论(0) 推荐(0) 编辑
摘要: (flappbird) luo@luo-ThinkPad-W540:data$ pip list labelImgPackage Version Location absl-py 0.2.2 appdirs 1.4.3 asn1crypto 0.24.0 astor 0.7.1 attrs 18.1 阅读全文
posted @ 2019-05-15 21:30 西北逍遥 阅读(184) 评论(0) 推荐(0) 编辑
摘要: luo@luo-All-Series:~/MyFile$ luo@luo-All-Series:~/MyFile$ luo@luo-All-Series:~/MyFile$ git clone https://github.com/endernewton/tf-faster-rcnn.gitClon 阅读全文
posted @ 2019-05-15 15:37 西北逍遥 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-13 21:23 西北逍遥 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #ifdef _WIN32#include <windows.h>#endif#include <osgViewer/Viewer>#include <osgDB/ReadFile> int main(){ osgViewer::Viewer viewer; osg::Node *node = ne 阅读全文
posted @ 2019-05-12 16:07 西北逍遥 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1> 已启动生成: 项目: OSG_3_1_osgViewer应用基础, 配置: Debug x64 1>cl : 命令行 warning D9002: 忽略未知选项“/SAFESEH:NO”1> osgViewer应用基础1.cpp1>e:\opensourcegraph\openscenegra 阅读全文
posted @ 2019-05-12 16:04 西北逍遥 阅读(2733) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-10 21:05 西北逍遥 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-07 20:54 西北逍遥 阅读(829) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-07 20:14 西北逍遥 阅读(136) 评论(0) 推荐(0) 编辑
摘要: IfcWallStandardCase (#1884) -- 基本墙:常规 - 300mm:273847IfcWallStandardCase (#2021) -- 基本墙:常规 - 300mm:273950IfcWallStandardCase (#2100) -- 基本墙:常规 - 300mm: 阅读全文
posted @ 2019-05-06 21:05 西北逍遥 阅读(326) 评论(0) 推荐(0) 编辑
摘要: Configuring RNN model... WARNING:tensorflow:From /home/luo/TensorflowProject/LSTM_2019042202/LSTM_Model0504.py:83: softmax_cross_entropy_with_logits ( 阅读全文
posted @ 2019-05-05 09:16 西北逍遥 阅读(287) 评论(0) 推荐(0) 编辑
摘要: ['马', '晓', '旭', '意', '外', '受', '伤', '让', '国', '奥', '警', '惕', ' ', '无', '奈', '大', '雨', '格', '外', '青', '睐', '殷', '家', 阅读全文
posted @ 2019-05-04 19:51 西北逍遥 阅读(116) 评论(0) 推荐(0) 编辑
上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 94 下一页