전체 글 (61) 썸네일형 리스트형 [코세라] [Week 3_Sequence Models & Attention mechanism] 2. Speech recognition - Audio data Speech recognition - Audio data 1. Speech recognition 2. Trigger word detection 1. Speech recognition 1) Speech recognition 개요 speech recognition의 경우, 오디오클립을 위와 같이 전처리 해주어야 한다. 위쪽 그래프는 x축이 time, y축이 air pressure 밑쪽 그래프는 x축이 time, y축이 frequecies이다. 원래는 phonems (음소)를 이용해 speech recognition을 해왔으나 이제는audio clip을 인풋하고 바로 transcript를 산출하는 end-to-end deep learning을 할 수 있게 되었다(without hand engineering)... [코세라] [Week 3_Sequence models & Attention mechanism] 1. Various sequence to sequence architecture Various sequence to sequence architecture 1. Basic Models 2. Picking the most likely sentence 3. Beam Search 4. Refinements to beam search 5. Error analysis in beam search 6. Bleu Score 7. Attention model intuition 8. Attention model 1. Basic Models 1) 번역 위와 같이 번역을 해야하는 상황에서 input sequence와 output sequence 의 크기가 다를 수 있다. 이럴 땐 위의 구조와 같이 encoder 부분과 decoder 부분을 나누어 주면 된다. 2) Image to Text 위와 같이 이미.. [코세라] [Week 2] Quiz & Programming Assignments # Quiz 1. 우리가 word2vec(혹은 GloVe 등등) 를 하는 궁극적인 목표는 context word가 인풋되었을 때, 어떤 단어가 target인가 아는 것도 중요하지만 더 중요한건 word embedding matrix를 학습하는 것이다. # Programming Assignments 1. if ~ continue # GRADED FUNCTION: complete_analogy def complete_analogy(word_a, word_b, word_c, word_to_vec_map): """ Performs the word analogy task as explained above: a is to b as c is to ____. Arguments: word_a -- a word, stri.. 이전 1 ··· 6 7 8 9 10 11 12 ··· 21 다음