일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 지도학습
- OpenAI
- LG Aimers 4th
- ChatGPT
- LG Aimers
- 해커톤
- 티스토리챌린지
- 딥러닝
- Machine Learning
- gpt
- 오블완
- supervised learning
- PCA
- GPT-4
- 분류
- LG
- regression
- 머신러닝
- LLM
- deep learning
- 회귀
- AI
- Classification
- Today
- Total
목록분류 전체보기 (333)
SYDev
경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. 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..
경희대학교 이성원 교수님의 풀스택 서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Class 직접 만들기 Part 1기본적인 개념은 c++과 유사late- Null-safety에 의해 null 값을 가질 수 없는 변수에 대해 -> "일부러 지금 초기화하지 않고, 나중에 초기화 하겠다"를 선언하는 문법constructor클래스 객체 생성 최초 시점 호출되는 함수(메소드)클래스 이름과 메소드의 이름 동일리턴 값 Xgetter, setterget/set 유형 메소드를 만드는 문법ex) String get asString => "$_value" -> value 값을 string으로 변환하여 반환하는 asString이란 이름을 가진 getterex) set value(int givenValue) => _val..
경희대학교 이성원 교수님의 풀스택 서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Null-Safety (Null에 대한 프로그램 안정성 보장)Dart 언어는 Null-Safety가 defaultDart의 변수들 -> 기본적으로 null 값을 가질 수 없음.변수들은 사용하기 전에 반드시 초기화가 필요Dart 언어에서, 강제로 null 값을 갖는 변수를 정의할 수 있음int? i; -> i는 int 객체 혹은 null 저장 가능 -> null은 "의미없는 값을 저장하는 객체"로 정의runtimeType 메소드(null 객체가 지원하는 유일한 메소드)주어진 변수/객체가 null -> null을 리턴주어진 변수/객체가 null이 아닌 경우 -> 해당하는 type 리턴A ?? B A가 null이 아닌 경우 ..
경희대학교 허선영 교수님의 운영체제 수업을 기반으로 정리한 글입니다. Part 1: OverviewGoals of this Exercise What operating systems doHow operating systems interact with user programs and computer hardware? Going Deeper! - Software Interrupt and System CallOn Unix and Linux systems, software interrupt(trap) -> system calls를 요청하기 위해 사용됨 int -> x86 processors에서 software interrupt를 호출하기 위해 사용하는 assebly language instructionex) in..
경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Learning Objectivevirtualization & container technology의 핵심 개념 Virtualizationcomputer science에서의 Virtualization -> 무언가의 virtual version을 만드는 행위Virtual computer, hardware platforms, storage divices, computer network resources-> virtual machine - sofrware 기반으로 구현된 것1. Types of VirtualizationSoftwareMemoryStorageDataNetwork 2. Role of Virtualization하나..
경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Learning Objective On-premises vs Cloud ComputingIT infrastructureHow to make infrastructureMutable and immutable infrastructure On-Premises(On-prem)IT system과 Software를 자체적인 물리적인 공간에 직접 설치하고 운영하는 방식private cloud computing과 유사-> hardware에 대한 지식 없이, 그저 서비스만 운영하고 싶다? -> cloud computing이 나을 수 있다.-> 보안이나, 특정 hardware에 대한 관리를 직접 수행해야만 한다? -> on-premise..
경희대학교 박제만 교수님의 자료구조 수업을 기반으로 정리한 글입니다. Abstract Data Type(ADT)data와 operations를 구체적인 구현 방법 없이 명기한 data type같은 ADT가 언어에 따라서 다른 형태를 가질 수 있음, but key operations는 같음 Data Structure DefinitionData Structure는 shape만을 의미하지 않는다.Data Structure는 data elements의 더 효율적인 수정과 접근을 허용한다.결집, 관리, 저장 방식을 정의한다.Data Structure: 개별적인 data elements를 저장하고 계산하기 위해 사용되는 operations에 접근함으로써, 결집이 특성화된 data elements의 collectio..