"물리학과 인공지능2 2023-2"의 두 판 사이의 차이

주합루 오픈 위키
둘러보기로 이동 검색으로 이동
1번째 줄: 1번째 줄:
   
   
  교재 2판입니다.
  Deep Learning with Python 2nd Edition, 국내 번역서도 있습니다.
   HW1 SSH에 대해 조사하기
   HW1 SSH에 대해 조사하기
    
    
16번째 줄: 19번째 줄:
   os.system("ls")
   os.system("ls")


   HW3  Ch. 2 example 완벽하게 수행하고 이해하기
   HW4 Ch. 2 example 완벽하게 수행하고 이해하기


   [ https://github.com/fchollet/deep-learning-with-python-notebooks ]
   [ https://github.com/fchollet/deep-learning-with-python-notebooks ]

2023년 9월 27일 (수) 13:21 판

 교재 2판입니다.
 Deep Learning with Python 2nd Edition, 국내 번역서도 있습니다. 
 HW1 SSH에 대해 조사하기
 
 HW2 UNIX의 기본 명령어 연습해 보기
 HW3 UNIX에서 vi편집기 사용법 익히기

python path 추가

 import sys
 sys.path.append("./")

python shell 명령어 실행

 import os
 os.system("ls")
 HW4 Ch. 2 example 완벽하게 수행하고 이해하기
 [ https://github.com/fchollet/deep-learning-with-python-notebooks ]