전체 글
-
Shallow Neural NetworksDeep Learning 2023. 9. 28. 23:12
본 포스팅은 Simon J.D. Prince 의 Deep Learning 교재를 스터디하며 정리한 글임을 밝힙니다.https://udlbook.github.io/udlbook/ Chapter 2에서는 1D linear regression 활용한 supervised learning 을 소개한다. 하지만 이러한 모델은 입력/출력의 관계를 하나의 “line” 으로만 표현한다. 본 챕터에서는 이러한 “lines” 는 “piecewise linear funcsion(조각 선형함수?)” 로 표현될 수 있고, 이들은 임의의 복잡한 고차원의 입력/출력의 관계를 표현하기에 충분하다는 것을 보인다.3.1. Neural network ExampleShallow neural networs 는 multivariate input..
-
Introduction & Supervised Learning - Deep LearningDeep Learning 2023. 9. 28. 23:12
본 포스팅은 Simon J.D. Prince 의 Deep Learning 교재를 스터디하며 정리한 글임을 밝힙니다.https://udlbook.github.io/udlbook/1. Introduction Artificial Intelligence: 인지 행동을 모방하는 시스템을 구축하는 학문Machine Learning: 주어진 데이터를 통해 수학적인 모델을 fitting 하여 결정하고록 하는 것을 학습하는 AI의 subset.Deep Neural Network: ML 모델 중에서도 크고 거대한 모델들을 의미함. 앞으로 스터디 하는 동안 다룰 토픽.ML은 크게 3가지의 파트로 구분할 수 있다. Supervised learningUnsupervised learningReinforcement learning..
-
Automatatic1111 DreamBooth Simple Training TutorialStableDiffusion 2023. 3. 25. 19:24
Automatic1111 DreamBooth extension을 학습 하는 과정을 소개하겠습니다.아래 DreamBooth Extention wiki 에서 제공하는 튜토리얼을 참고하여 작성한 글입니다.ELI5 TrainingContribute to d8ahazard/sd_dreambooth_extension development by creating an account on GitHub.https://github.com/d8ahazard/sd_dreambooth_extension/wiki/ELI5-Training0. DreamBooth란?1. 모델 준비기본 모델 사용커스텀 모델 사용하기 2. 데이터 준비3. 학습 파라미터 셋팅4. 학습0. DreamBooth란?아래의 예시처럼 어떤 특정한 Object를 A..
-
File Input & Output System callsLinux 2023. 3. 24. 23:31
본 자료는 상명대학교 신동하 교수님의 수업을 정리한 것임을 밝힙니다.File input/output System Callsflags란?에 정의돼있다.flags는 파일을 어떤 용도로 open할 지를 지정한다.O_RDONLYread onlyO_WRONLYwrite onlyO_RDWRread, writeO_APPENDappendO_CREAT새 파일 생성, 추가 인수 필요O_EXCLO_CREAT와 같이 사용 되면 존재하는 파일을 또 생성할 때 error가 생성 (같이 사용된다는 것은 bitwise or 하는 것 “|”)O_TRUNC파일 크기가 0이 됨O_SYNCwrite시 physical I/O가 완료될 때까지 wait한다.mode란?에 정의돼있다.creat할 file의 mode=(user/group/other..
-
Simple CommandsLinux 2023. 3. 24. 02:36
본 자료는 상명대학교 신동하 교수님의 수업을 정리한 것임을 밝힙니다.Simple Commands[var=value] command arg1 arg2 ... [redirection] [&][ ] 대괄호 안은 option 명령 수행 후 return value에 따라 정상 종료와 비정상 종료를 구분할 수 있습니다.return value정상 종료? 비정상 종료?0정상 종료0이 아닐 경우비정상 종료Pipelines [time] [!] simple_command [ | ] simple_command ...'|' 앞 명령의 standard output이 '|' 뒤 명령의 standard input으로 연결됨pipelines의 return value는 마지막 수행된 명령의 return value임 단순 명령 앞에..
-
Shell ProgrammingLinux 2023. 3. 24. 02:36
본 자료는 상명대학교 신동하 교수님의 수업을 정리한 것임을 밝힙니다.Shell 이란?Unix 운영체제에서 사용자 명령을 읽어서 수행시키는 명령어 처리 프로그램(command interpreter) 입니다.또한 User의 command, application 실행하고 여러 application들을 결합한 shell program 수행합니다.이를 통해 다양한 개발 도구 제공되며 system developer가 되려면 개발 시 shell을 잘 사용해야합니다.VariablesC 변수명 규칙을 지켜야합니다.var=value 와 같이 저장한다. = 양쪽에 " " 공백이 있으면 안됨모든 변수는 string으로 저장된다.$변수 와 같이 사용하여 변수의 저장된 값을 불러올 수 있다. 이를 variable substitu..
-
Unix System OverviewLinux 2023. 3. 24. 02:35
본 자료는 상명대학교 신동하 교수님의 수업을 정리한 것임을 밝힙니다.Unix System Overview무엇을 공부하나OS가 application에게 제공하는 아래 3가지 servicefile input / outputprocess creation, terminationIPC ( inter-process communication )developer 관점의 Unix SystemUnix Architecturekernel의 service를 이용하여 프로그래밍을 하는 방법을 배웁니다.application사용자에게 기능을 제공하는 프로그램. Unix는 multi-programming system이다shellapplication의 하나로 유닉스 명령어 혹은 다른 프로그램을 수행 시키기위한 명령어 처리 프로그램 ( ..
-
EuroTruckSimulation2 에서 data 가져오기Python 2023. 3. 24. 02:02
🚛For Only Windowshttps://github.com/nlhans/ets2-sdk-pluginReleases · nlhans/ets2-sdk-pluginYou can't perform that action at this time. You signed in with another tab or window. You signed out in another tab or window. Reload to refresh your session. Reload to refresh your session.https://github.com/nlhans/ets2-sdk-plugin/releaseshttps://github.com/Madricas/ets2-python-telemetryInstallation먼저 rel..