더북(TheBook)
import os, platform
  
base_path = "data/klue/"
file_name = "dacon-klue-open-zip"
  
def file_exist_check(base_path):
   if os.path.exists(f"{base_path}train_data.csv"):
       print(f"{os.getcwd()}/{base_path} 경로에 파일이 있음")
       return
  
   if not os.path.exists(base_path):
       os.makedirs(base_path)
  
   if platform.system() == "Linux":
       print(f"파일을 다운로드하고 {base_path} 경로에 압축을 해제함")
       !wget https://bit.ly/{file_name}
       !unzip {file_name} -d {base_path}
       return
   else:
       print(f"""https://dacon.io/competitions/official/235747/data 에서 다운로드해 실습 경로 {os.getcwd()}/{base_path} 옮겨 주세요.""")
       return
  
file_exist_check(base_path)
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.