[파이토치] 실전 인공지능으로 이어지는 딥러닝/ 딥러닝호형
🦿파이썬 입문
폴더만들기
import os
def directory_create(folder_name):
try:
os.makedirs(folder_name)
print("Directory ", folder_name, ": Created ")
except FileExistsError:
print("Directory ", folder_name, ": Already exists")
🦿파이토치 입문
텐서 Tensor / 역전파 Backpropagation / Data Loader
https://github.com/Goldchae/LLM_study/tree/main/pytorch_study
LLM_study/pytorch_study at main · Goldchae/LLM_study
LLM을 활용한 실전 AI 애플리케이션 개발. Contribute to Goldchae/LLM_study development by creating an account on GitHub.
github.com
'🤖 AI > AI' 카테고리의 다른 글
🔬sLLM 학습하기 :Text2SQL 데이터셋 (2) | 2024.10.24 |
---|---|
🦿딥러닝 실전 : Data Loader (1) | 2024.10.17 |
🦿딥러닝 개념 : 여러 가지 학습 방법과 XAI (2) | 2024.10.14 |
🦿딥러닝 개념 : 인공 신경망의 성능 개선 (0) | 2024.10.14 |
🦿딥러닝 개념 : 오토인코더 (1) | 2024.10.03 |