深度学习--学习中存在的问题

1. sudo gedit ~/.bash_profile #打开.bash_profile
2. 对于配置好的程序,指的是在python3.5下运行的程序,为了测试tensor flow是否安装成功,我们输入的指令是 >> import tensorflow as tf,结果显示的是导入成功,但是当我们测试tf版本的时候,也就是键入 >>tf.__version__ 的时候会发现报错,也就是显示未发现.__version__的指令。出现上述的原因是因为未安装对应的tensorflow,下面的任务就是在python3.5版本下面安装tensorflow 1.4.0。注意安装的tf是在python3.5下面,使用注意是使用pip3 or pip的指令,选择不对的话,最终会导致安装失败。安装过程中可能会提示pip3版本的问题,因此我们需要更新对应的版本。
     安装指令为:pip3 install tensorflow-gpu #python 3.n; gpu support;学习更多的知识参考官网:(https://www.tensorflow.org/install/)
     terminal终端运行的指令为:CUDA_VISIBLE_DEVICES=1 python3 test flower.py (note:主要是考虑本台计算机可能有多个gpu)
3. deep convolutional activations-based features for ground-based cloud classification: convolutional neural networks have shown remarkable performance in image classification. cons have the ability to leverage large labeled data sets to learn increasingly complex transformations of the input to capture invariance. cnns pretrained on such large data sets have been shown to generate discriminative feature representations on many other domains.

你可能感兴趣的:(深度学习--学习中存在的问题)