일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- 딥러닝
- linux
- keras
- colaboratory
- Windows 10
- FIle
- face_recognition
- ubuntu
- install
- gpu memory
- shakeratos
- object detection
- ppc64le
- download
- dataset
- raspberry pi
- Deep Learning
- dlib
- urllib
- Anaconda
- pyTorch
- python3
- CUDA
- windows
- colab
- TensorFlow
- python
- error
- Jupyter notebook
- YouTube 8M
- Today
- Total
목록download (4)
Shakerato
Refer to https://chocolatey.org/install Refer to http://thesociablegeek.com/azure/using-curl-in-powershell/ 1. in cmd @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" 1. in ..
Visual Studio Community 2015(web installer)https://go.microsoft.com/fwlink/?LinkId=532606&clcid=0x409 Refer to here:https://stackoverflow.com/questions/44290672/how-to-download-visual-studio-community-edition-2015-not-2017
* What is YouTube 8M dataset? https://research.google.com/youtube8m/download.html * How to download the dataset?* You have to download the dataset only on the Linux! (not Windows), because of duplicated file names. (Windows does not allow this situation: 'Ab.txt', 'aB.txt' in the same folder) 1. Download 'download_fix.py' file from this URL: https://storage.googleapis.com/data.yt8m.org/download_..
import urllib.request as urllib2import timeimport logging def fileDownload(url, file_name): logging.basicConfig(level=logging.INFO) logger = logging.getLogger('[fileDownload]') num_of_retries = 3 time_interval = 2 for retrycnt in range(num_of_retries): try: u = urllib2.urlopen(url) break except Exception as e: logger.error(' Faild to download: ' + str(e) + ', Number of remaining attempts: ' \ + ..