(RTX 2070 同样可以在 ubuntu 16.04 + cuda 9.0中使用.Ubuntu18.04可能只支持cuda10.0,在跑开源代码时可能会报一些奇怪的错误,所以建议大家配置 ubuntu16.04 + cuda 9.0.下文还是以ubuntu18.04 + cuda 10.0为例.ubuntu16.04 + cuda 9.0的配置方法大同小异) 虽然CUDA官网中没有RTX20系列GPU所对应的版本,但是CUDA 10.0 支持Ubuntu18.04 + GPU GEFORCE…
打印pb模型参数及可视化结构import tensorflow as tf from tensorflow.python.framework import graph_util tf.reset_default_graph() # 重置计算图 output_graph_path = '/home/huihua/NewDisk/stuff_detector_v1.pb' with tf.Session() as sess: tf.global_variables_initializer().run…
h5_to_pb.py from keras.models import load_model import tensorflow as tf import os import os.path as osp from keras import backend as K #路径参数 input_path = 'input path' weight_file = 'weight.h5' weight_file_path = osp.join(input_path,weight_file) outpu…
import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; public class FileCopy { /** * java:从指定文件中读取80个字节并写入到新的文件中 */ public static void main(String srgs[]) { File inputFile = new File("src\\input.txt"); // src下面的文件i…
1. 解压tar.xz安装包 今天去Ubuntu上安装nodejs,下载的文件是node-v8.11.1-linux-x64.tar.xz,这是两层压缩,外面是xz压缩,里层是tar压缩,所以分两步实现解压. # xz -d node-v8.11.1-linux-x64.tar.xz # tar -xvf node-v8.11.1-linux-x64.tar.xz也可以直接解压 # tar -xvJf node-v8.11.1-linux-x64.tar.xz tar.xz格式的压缩包大小比.t…
with self.detection_graph.as_default(): with tf.Session(graph=self.detection_graph) as sess: # Expand dimensions since the model expects images to have shape: [1, None, None, 3] image_np_expanded = np.expand_dims(imageSerialized, axis=0) image_tensor…