일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- AI
- Machine Learning
- Classification
- 해커톤
- 오블완
- regression
- ChatGPT
- GPT-4
- 딥러닝
- 분류
- gpt
- LLM
- LG
- 티스토리챌린지
- LG Aimers 4th
- OpenAI
- 회귀
- PCA
- 머신러닝
- LG Aimers
- supervised learning
- deep learning
- 지도학습
- Today
- Total
목록분류 전체보기 (323)
SYDev
경희대학교 이성원 교수님의 풀스택 서비스 프로그래밍 수업을 기반으로 정리한 글입니다. 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..
경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Goals of Reading Articles What is cloud computing? + utility clouding & cloud computing economicscloud computing의 구성요소 & service modelsWhat are the issues of cloud computing? Cloud Computing ConceptCloud Computing Infrastructure: CPU, Storage, NetworkPlaform: Database, Object Storage -> 개발자들이 사용하는 middleware, framework, ...Application: youtube, net..
경희대학교 이성원 교수님의 마이크로서비스 프로그래밍 수업을 기반으로 정리한 글입니다. Birds Eye on Industrial TrendBig Picture수 백만 개의 machines을 가지고 프로그램을 짜는 방법을 학습Software products to (Web based Fast-response) ServicesFor deep understanding of Datacenter Programming AgileDevOpsContinuous Integration(CI)Continuous Delivery(CD)Continuous Deploy(CD)Microservice and ServerlessPlatform EngineeringDevOps에서 얻은 경험적 지식을 더 구체적이고 재현 가능한 형식으로 ..