[GoogleColab] AIhub데이터를 코렙에서 다운로드 받기
구글 로그인 및 코렙 생성 1-1. 구글에 로그인을 합니다. 1-2. 구글 드라이브에 접속 후 빈 화면에 "우클릭"을 합니다. [더보기] -> [Google Colaboratory]를 클릭합니다. 이렇게 되면 기본 준비가 끝났습니다. 다운로드 하기 위한 설정 1. aihubshell 다운로드 !curl -o "aihubshell" https://api.aihub.or.kr/api/aihubshell.do curl 명령어를 이용하여 aihubshell을 다운로드 받습니다. 2. 구글 드라이브 마운트 from google.colab import drive drive.mount('/content/drive') ※ 해당 마운트는 자신의 드라이브에 직접 파일을 넣어주는 작업때문에 진행하였습니다. 3. 자신의 AI..
2024.02.28
[GoogleColab] 코렙에서 GPU 사용방법
코렙의 GPU 사용 1. 코렙에서 device 변경하는 방법 상단 메뉴 -> 런타임 -> 런타임 유형 변경 -> 하드웨어 가속기를 T4 GPU or TPU로 변경 -> 저장 -> 세션 다시 시작 및 모두 실행 tensor = torch.rand(3, 4) print(f'shape: {tensor.shape}') print(f'dtype: {tensor.dtype}') print(f'device: {tensor.device}') # 결과값 => # shape: torch.Size([3, 4]) # dtype: torch.float32 # device: cpu # is_available() : gpu 사용할 수 있는지 여부 tensor = tensor.reshape(4, 3) tensor = tensor.i..
2024.01.09
no image
Colab Python Day10_2
2023.09.14
no image
Colab Python Day10_1
2023.09.14
no image
Colab Python Day9_2
2023.09.13
no image
Colab Python Day9_1
2023.09.13