项目作者: paramphy

项目描述 :
Colab Notebooks for SEM image Classification
高级语言: Jupyter Notebook
项目地址: git://github.com/paramphy/sem-image-classification-using-CNN.git
创建时间: 2020-09-18T12:51:34Z
项目社区:https://github.com/paramphy/sem-image-classification-using-CNN

开源协议:Apache License 2.0

下载


sem-image-classification-using-CNN

Colab Notebook for SEM image classificatioin
And a pathway towards a software for Microsopy in SEM

Dataset

Downloading Datasets to Google Drive

  • Code to download any file in Google drive
  1. #importing requests librery
  2. import requests
  3. #Download link
  4. file_url = "https://b2share.eudat.eu/api/files/5fc88ad5-2f13-483c-8b80-a5862c91dbbb/MEMS_devices_and_electrodes.tar"
  5. r = requests.get(file_url, stream = True)
  6. #Give a name of the for your downloaded file
  7. with open("/content/gdrive/My Drive/MEMS_devices_and_electrodes.tar", "wb") as file:
  8. for block in r.iter_content(chunk_size = 1024):
  9. if block:
  10. file.write(block)
  • Code to extract data

!tar -xvf '/content/gdrive/My Drive/MEMS_devices_and_electrodes.tar' -C '/content/gdrive/My Drive/NANOML/'