일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- deep learning
- PCA
- Classification
- LG Aimers 4th
- GPT-4
- LG Aimers
- ChatGPT
- 해커톤
- 회귀
- gpt
- AI
- LG
- 오블완
- 지도학습
- OpenAI
- 티스토리챌린지
- Machine Learning
- supervised learning
- regression
- 딥러닝
- 머신러닝
- LLM
- 분류
- Today
- Total
목록2024/09/17 (3)
SYDev

경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Learning ObjectiveDocker overviewBasic commandsPracticeInstall Docker Desktop on your DesktopTest-drive of examples Docker Overview1. Docker Editions - @ OLD DaysCommunity Edition(CE) - 개인 개발자 & 소규모 팀에 적합Enterprise Edition(EE) - 기업 개발자 & IT 팀에 적합 - @ Today 2. Docker Enginecontainer를 관리하는 지속성 있는 processDocker의 core work - Building, Running & Distrib..

경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Learning Objective Docker introduction"Hello Docker"Trouble shooting of Docker life Docker1. What is Docker?Open Platform for developing, shipping, running applications -> 거의 대부분의 platform 위에서 동작 가능 & open source -> docker 위에서 실행가능하다면, platform independent하게 program을 다룰 수 있음사용자의 infrastructure로부터 사용자의 applications를 분리software를 빠르게 deliverapplicatio..

경희대학교 박제만 교수님의 자료구조 수업을 기반으로 정리한 글입니다. List DefinitionsList relationship모든 요소(첫 번째, 마지막 요소 제외)는 predecessor(전임자), successor(후임자)를 가진다.first element -> predecessor Xlast element -> successor XLengthlist 내부 items의 개수Unsorted vs Sorted Unsorted List1. Unsorted Listitems의 특별한 순서가 없는 listex) in pythonBasic ADT Operations- Constructor: ADT의 new instance(object) 생성- Tranformer: instance의 하나 혹은 더 많은 da..