爱撒娇羊

文章
5
资源
0
加入时间
2年10月24天

安装ipython失败 in error catcher_为pointnet++的运行搭建环境ubuntu18.04+cuda10.0+cudnn7.4.2+anaconda3+tensorflow-...

换源(加快下载速度使用root权限:sudo -s备份源码:cp /etc/apt/sources.list /etc/apt/sources.list.bak替换源列表内容:gedit /etc/apt/sources.list打开list后,将以下内容替换掉原来的: # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释deb https://mirrors.tuna...

TensorFlow载入数据的三种方式

    Tensorflow数据读取有三种方式: 1)预加载数据; 2)产生数据,再把数据喂给后端; 3)从文件中直接读取1、预加载数据(仅适用于数据量比较小的情况):import tensorflow as tf # 设计Graph x1 = tf.constant([2, 3, 4]) x2 = tf.constant([4, 0, 1]) y = tf.add(x1, x2)...

android oom 日志分析,Android内存溢出OOM简单介绍

前言在日常的Android开发中,每个开发者或多或少都会遇到过OutOfMemoryError这样崩溃信息。如果工程稍微大一些,在monkey测试的崩溃日志也是比较常见的一种。如下是比较常见的一些报错信息:Android:java.lang.OutOfMemoryError: Failed to allocate a 1340012 byte allocation with 72503 free ...