当前位置:   article > 正文

Google Colab 免费GPU服务器使用教程-TensorFLow_localcolabfold运行需要多大的运行内存

localcolabfold运行需要多大的运行内存

参考教程:

Google Colab 免费GPU服务器使用教程

https://blog.csdn.net/cocoaqin/article/details/79184540

Colab简介

Colab的使用界面类似jupyter notebook。运行于虚拟机(VM)上。虚拟机配置K80 GPU,12G内存,39G硬盘空间。缺点是最多只能运行12小时,时间一到就会清空VM上所有数据。这包括我们安装的软件,包括我们下载的数据,存放的计算结果。

Colaboratory 是免费的 Jupyter 笔记本环境,不需要进行任何设置就可以使用,并且完全在云端运行。

https://colab.research.google.com/notebooks/welcome.ipynb?authuser=0#scrollTo=-Rh3-Vt9Nev9

 

支持 GPU 的 TensorFlow,简单设置即可:

目前Colab只提供Tesla K80 GPU,你同时可以利用下面的指令来查看:

  1. from tensorflow.python.client import device_lib
  2. device_lib.list_local_devices()

能显示出你的所有使用的硬件;

运行中的信息显示 
我们还需要查看内存信息或者CPU信息,可以使用下面的命令: 
内存:!cat /proc/meminfo 
处理器:!cat /proc/cpuinfo

  1. !ls /proc
  2. #CPU信息
  3. !cat /proc/cpuinfo
  4. #内存
  5. !cat /proc/meminfo
  6. #版本
  7. !cat /proc/version
  8. #设备
  9. !cat /proc/devices
  10. #空间
  11. !df

 

挂载google本地云盘

Mounting Google Drive locally

  1. from google.colab import drive
  2. drive.mount('/content/gdrive')

 

切换工作路径

在colab环境中,我们挂载Google drive的位置是 /content/drive/ 。

colab中的notebook和py文件默认都是以 /content/ 作为工作目录,需要执行一下命令手动切换工作目录,例如:

  1. import os
  2. path = "/content/drive/colab-notebook/lesson1-week2/assignment2"
  3. os.chdir(path)
  4. os.listdir(path)

 

测试:

上传图片:

  1. from google.colab import files
  2. uploaded = files.upload()
  3. for fn in uploaded.keys():
  4. print('User uploaded file "{name}" with length {length} bytes'.format(
  5. name=fn, length=len(uploaded[fn])))

新建文件、下载文件:

  1. from google.colab import files
  2. with open('example.txt', 'w') as f:
  3. f.write('some content')
  4. files.download('example.txt')

 

 

1.使用gfile读图片,decode输出是Tensor,eval后是ndarray

  1. import matplotlib.pyplot as plt
  2. import tensorflow as tf
  3. import numpy as np
  4. from google.colab import files
  5. print(tf.__version__)
  6. #with open('/content/gdrive/My Drive/a(2).jpg', 'r') as f:
  7. # f.write('Hello Google Drive!')
  8. image_raw = tf.gfile.FastGFile('gdrive/My Drive/a (2).jpg','rb').read() #bytes
  9. #image_raw = tf.gfile.FastGFile('颜值.png','rb').read()
  10. img = tf.image.decode_jpeg(image_raw) #Tensor
  11. #img2 = tf.image.convert_image_dtype(img, dtype = tf.uint8)
  12. with tf.Session() as sess:
  13. print(type(image_raw)) # bytes
  14. print(type(img)) # Tensor
  15. #print(type(img2))
  16. print(type(img.eval())) # ndarray !!!
  17. print(img.eval().shape)
  18. print(img.eval().dtype)
  19. # print(type(img2.eval()))
  20. # print(img2.eval().shape)
  21. # print(img2.eval().dtype)
  22. plt.figure(1)
  23. plt.imshow(img.eval())
  24. plt.show()

2.使用WholeFileReader输入queue,decode输出是Tensor,eval后是ndarray

  1. import tensorflow as tf
  2. import os
  3. import matplotlib.pyplot as plt
  4. def file_name(file_dir): #来自http://blog.csdn.net/lsq2902101015/article/details/51305825
  5. for root, dirs, files in os.walk(file_dir): #模块os中的walk()函数遍历文件夹下所有的文件
  6. print(root) #当前目录路径
  7. print(dirs) #当前路径下所有子目录
  8. print(files) #当前路径下所有非目录子文件
  9. def file_name2(file_dir): #特定类型的文件
  10. L=[]
  11. for root, dirs, files in os.walk(file_dir):
  12. for file in files:
  13. if os.path.splitext(file)[1] == '.jpg':
  14. L.append(os.path.join(root, file))
  15. return L
  16. path = file_name2('test')
  17. #以下参考http://blog.csdn.net/buptgshengod/article/details/72956846 (十图详解TensorFlow数据读取机制)
  18. #以及http://blog.csdn.net/uestc_c2_403/article/details/74435286
  19. #path2 = tf.train.match_filenames_once(path)
  20. file_queue = tf.train.string_input_producer(path, shuffle=True, num_epochs=2) #创建输入队列
  21. image_reader = tf.WholeFileReader()
  22. key, image = image_reader.read(file_queue)
  23. image = tf.image.decode_jpeg(image)
  24. with tf.Session() as sess:
  25. # coord = tf.train.Coordinator() #协同启动的线程
  26. # threads = tf.train.start_queue_runners(sess=sess, coord=coord) #启动线程运行队列
  27. # coord.request_stop() #停止所有的线程
  28. # coord.join(threads)
  29. tf.local_variables_initializer().run()
  30. threads = tf.train.start_queue_runners(sess=sess)
  31. #print (type(image))
  32. #print (type(image.eval()))
  33. #print(image.eval().shape)
  34. for _ in path+path:
  35. plt.figure
  36. plt.imshow(image.eval())
  37. plt.show()

 

3.使用read_file,decode输出是Tensor,eval后是ndarray

  1. import matplotlib.pyplot as plt
  2. import tensorflow as tf
  3. import numpy as np
  4. print(tf.__version__)
  5. image_value = tf.read_file('test/a.jpg')
  6. img = tf.image.decode_jpeg(image_value, channels=3)
  7. with tf.Session() as sess:
  8. print(type(image_value)) # bytes
  9. print(type(img)) # Tensor
  10. #print(type(img2))
  11. print(type(img.eval())) # ndarray !!!
  12. print(img.eval().shape)
  13. print(img.eval().dtype)
  14. # print(type(img2.eval()))
  15. # print(img2.eval().shape)
  16. # print(img2.eval().dtype)
  17. plt.figure(1)
  18. plt.imshow(img.eval())
  19. plt.show()

 

训练数据放到谷歌云盘上,

注意 数据路径,与在本地路径,有所差异:

  1. !cd gdrive
  2. !ls gdrive/'My Drive'/Cats_vs_Dogs-master/data
  3. !pwd

 

 

GitHub

您可以通过依次转到“文件”>“在 GitHub 中保存一份副本…”,保存一个 Colab 笔记本副本

只需在 colab.research.google.com/github/ 后面加上路径,即可在 GitHub 上加载任何 .ipynb。例如,colab.research.google.com/github/tensorflow/models/blob/master/samples/core/get_started/_index.ipynb 将在 GitHub 上加载此 .ipynb

下载GitHub到Colab:

!git clone https://github.com/wxs/keras-mnist-tutorial.git 'TerenceDrive/Colab Notebooks/keras-mnist-tutorial'

 

 

本地运行时支持

Colab 支持连接本地计算机上的 Jupyter 运行;这样一来,您就可以在本地硬件上执行代码并访问本地文件系统。

参考链接:

https://research.google.com/colaboratory/local-runtimes.html

1、打开本地Jupyter

2、安装并启用jupyter_http_over_ws 扩展程序;(一次性)

  1. pip install jupyter_http_over_ws
  2. jupyter serverextension enable --py jupyter_http_over_ws

3、打开Anaconda Prompt,输入命令:

jupyter notebook --NotebookApp.allow_origin='https://colab.research.google.com'  --port=8899 --NotebookApp.port_retries=0

 

4、在 Colaboratory 中,点击“连接”按钮,然后选择“连接到本地运行时…”。在随即显示的对话框中输入上一步中的端口,然后点击“连接”按钮。

本地浏览器窗口:

 

可以尝试在Google Colab上的GPU训练ai challenger 场景分类:

TensorFlow全流程样板代码:以ai challenger 场景分类和slim预训练模型为例

https://blog.csdn.net/Wayne2019/article/details/78210172

 

https://blog.csdn.net/wayne2019/article/list/4?t=1

TensorFLow 读取图片1:初探四种从文件读取的方式

https://blog.csdn.net/Wayne2019/article/details/77884478


 

有精力还可以再玩玩:

【视频教程】Google Colaboratory 初学者动手数据分析

https://6so.so/t/434488/

https://github.com/PacktPublishing/Hands-On-Data-Analytics-for-Beginners-with-Google-Colaboratory-Video-

使用免费GPU深度学习平台colab玩转Kaggle比赛

https://blog.csdn.net/hohomi77/article/details/81261804

免费GPU计算平台-Floyd使用教程

https://blog.csdn.net/as472780551/article/details/78587395

https://www.floydhub.com/

Colab提供了免费TPU,机器之心帮你试了试

https://www.jiqizhixin.com/articles/2018-10-11-5

https://colab.research.google.com/github/tensorflow/tpu/blob/master/models/experimental/mnist_jupyter/Cloud-TPU-Demo.ipynb

https://www.tensorflow.org/api_docs/python/tf/contrib/tpu

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/780367
推荐阅读
相关标签
  

闽ICP备14008679号