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

주합루 오픈 위키
둘러보기로 이동 검색으로 이동
15번째 줄: 15번째 줄:
   import os
   import os
   os.system("ls")
   os.system("ls")
  HW3  Ch. 2 example 완벽하게 수행하고 이해하기
  [ https://github.com/fchollet/deep-learning-with-python-notebooks ]

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

 HW1 SSH에 대해 조사하기
 
 HW2 UNIX의 기본 명령어 연습해 보기
 HW3 UNIX에서 vi편집기 사용법 익히기

python path 추가

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

python shell 명령어 실행

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