일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- two-pointer
- sql코테
- 파이썬기초100제
- Greedy
- 리트코드
- stratascratch
- 알고리즘
- 생성형AI
- 투포인터
- 코드업
- medium
- 릿코드
- heap
- Python3
- 파이썬
- 슬라이딩윈도우
- dfs
- LeetCode
- Stack
- 자연어처리
- 파이썬알고리즘
- nlp
- SQL
- codeup
- GenerativeAI
- gcp
- 니트코드
- GenAI
- Python
- slidingwindow
- Today
- Total
목록전체 글 (161)
Tech for good

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com Introduction 1. Pass images to encoder 2. Extract information from the images 3. Create some feature vectors 4. Vectors are passed to the decoder 5. Build captions by generating words, one by one. Decoder It gets words one by one and makes the informatio..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com If you are an app developer or data scientist and want to build an application, you can use Generative AI Studio to quickly prototype and customize generative AI models with no code or low code. If you are a data scientist or ML developer who wants to bu..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com RNN/LSTM -> Sequence-to-sequence model i.e. Translation, Text classification Although all the models before Transformers were able to represent words as vectors, these vectors did not contain the context. And the usage of words changes based on the conte..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com Attention mechanism is behind all the transformer models and which is core to the LLM models. Encoder-Decoder is a popular model that is used to translate sentences. The encoder-decoder takes one word at a time and translates it at each time step. Howeve..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com Encoding stage It produces a vector representation of the input sentence. Decoding stage It creates the sequence output. Both the encoder and the decoder can be implemented with different internal architectures. The internal mechanism can be a recurrent ..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com GANs One neural network (Generator) -> creates images The other neural network (Discriminator) -> predicts if the image is real or fake Forward diffusion Start with a clean image and add noise iteratively Reverse diffusion Start with a noisy image and re..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com Google will not design or deploy AI in these four application areas:

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com Pre-trained: for general purpose with a large data set Fine-tuned: for specific aims with a much smaller data set Transformer model (e.g. PaLM) A transformer model consists of encoder and decoder. Encoder - encodes the input sequence and passes it to the..

https://www.youtube.com/playlist?list=PLIivdWyY5sqIlLF9JHbyiqzZbib9pFt4x Generative AI Learning Path https://goo.gle/LearnGenAI www.youtube.com semi-supervised learning = 소량의 labeled data + 대량의 unlabeled data The labeled data -> neural network이 task의 basic concepts을 알 수 있게 도와줌. The unlabeled data -> neural network이 새로운 예시들을 일반화할 수 있게 도와줌.

* 해당 게시물은 아래 노마트 코더 무료 강의를 수강하며 정리한 글입니다. https://nomadcoders.co/dart-for-beginners Dart 시작하기 – 노마드 코더 Nomad Coders Flutter 앱 개발을 위한 Dart 배우기 nomadcoders.co 괄호 닫기 전 ,를 쓰는 거 잊지말 것! Basic Data Types // Basic Data Types void main() { String name = 'diana'; bool alive = true; int age = 12; double money = 69.99; // num이라는 자료형은 int, double 모두 가능함. num x = 12; x = 1.1; num y = 67.289; } Lists // Lists ..