Deep Learning 23

Deep Learning - 딥러닝의 활성화 히트맵 시각화하기

이번 포스팅에서는 이미 훈련된 CNN의 활성화를 파악하는 방법 중 하나인 히트맵 시각화하는 방법에 대해서 정리해보도록 하겠습니다. 이 방법으로 저희는 이미지의 어느 부분이 CNN의 최종 분류 결정에 기여하는 가에 대해서 파악할 수 가 있습니다. 먼저 히트맵을 시각화하기 이전에 이미 훈련된 CNN 모델 중 하나인 VGG16 모델을 가져오도록 하겠습니다. from keras.applications.vgg16 import VGG16 from keras.preprocessing import image from keras.applications.vgg16 import preprocess_input , decode_predictions 그리고 이 모델을 이용해서 히트맵을 그리고자 하는 예시 사진을 하나 가져오겠습니..

Deep Learning 2020.11.08

Deep Learning - Keras를 이용해 CNN 설계 및 학습시키기

데이터 출처 : www.kaggle.com/tongpython/cat-and-dog Cat and Dog Cats and Dogs dataset to train a DL model www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/CNN_Example.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 이번 포스팅에서는 CNN을 설계하는 과정을 정리해보도록 하겠습니다. 대표적인 이미지 분류 문제로 여겨지는 Cats and Dogs 문제를 다루어보겠습니다. 먼저 o..

Deep Learning 2020.11.08

Deep Learning - CNN을 이용한 Face Expression 파악하기 Part2

데이터 출처 : www.kaggle.com/jonathanoheix/face-expression-recognition-dataset Face expression recognition dataset www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Face%20Expression%20Part1.ipynbgithub.com/sangHa0411/DataScience/blob/main/Face%20Expression%20Part2.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. gith..

Deep Learning 2020.10.20

Deep Learning - CNN을 이용한 Face Expression 파악하기 Part1

데이터 출처 : www.kaggle.com/jonathanoheix/face-expression-recognition-dataset Face expression recognition dataset www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Face%20Expression%20Part1.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 이번 포스팅에서는 CNN을 이용해서 Face Expression을 판별할 수 있는 모델을 만들어보도록 하겠습니다. 그리고 ..

Deep Learning 2020.10.19

Deep Learning - Corona Tweets 분석하기 Part3 : 트위터 감정 분석하는 LSTM 기반 모델 만들기

데이터 출처 : www.kaggle.com/datatattle/covid-19-nlp-text-classification Coronavirus tweets NLP - Text Classification Corona Virus Tagged Data www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Corona_Tweets.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com Part2에서 한 데이터 전처리를 이용해서 이번 Part3에서는 LSTM을 이용해서 코로나 관..

Deep Learning 2020.10.19

Deep Learning - Corona Tweets 분석하기 Part2 : 텍스트 전처리하기

데이터 출처 : www.kaggle.com/datatattle/covid-19-nlp-text-classification Coronavirus tweets NLP - Text Classification Corona Virus Tagged Data www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Corona_Tweets.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com Part2에서는 Deep Learning에 입력으로 넣기 이전에 노이즈가 상당히 많은 Text..

Deep Learning 2020.10.19

Deep Learning - Corona Tweets 분석하기 Part1 : 데이터 분석하기

데이터 출처 : www.kaggle.com/datatattle/covid-19-nlp-text-classification Coronavirus tweets NLP - Text Classification Corona Virus Tagged Data www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Corona_Tweets.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 이번 포스팅에서는 Corona와 관련된 tweet들에 대해서 텍스트 처리를 해보면서 데이터 분..

Deep Learning 2020.10.19

Deep Learning - LSTM을 이용한 애플의 주식 값 예측하기

데이터 출처 : www.kaggle.com/tarunpaparaju/apple-aapl-historical-stock-data Apple (AAPL) Historical Stock Data Apple stock data for the last 10 years www.kaggle.com github 주소 : github.com/sangHa0411/DataScience/blob/main/Apple%20Stock%20Market.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 이번 포스팅에서는 Time Series Problem을 Apple..

Deep Learning 2020.10.19

Deep Learning - GloVe Embedding Layer을 이용한 Fake News 구별하기 Part2

데이터 출처 : www.kaggle.com/clmentbisaillon/fake-and-real-news-dataset Fake and real news dataset Classifying the news www.kaggle.com ipynb file :github.com/sangHa0411/DataScience/blob/main/FakeNews_Detection.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 참고 자료 : www.kaggle.com/madz2000/nlp-using-glove-embeddings-99-87-accur..

Deep Learning 2020.10.10

Deep Learning - GloVe Embedding Layer을 이용한 Fake News 구별하기 Part1

데이터 출처 : www.kaggle.com/clmentbisaillon/fake-and-real-news-dataset Fake and real news dataset Classifying the news www.kaggle.com ipynb file :github.com/sangHa0411/DataScience/blob/main/FakeNews_Detection.ipynb sangHa0411/DataScience Contribute to sangHa0411/DataScience development by creating an account on GitHub. github.com 참고 자료 : www.kaggle.com/madz2000/nlp-using-glove-embeddings-99-87-accur..

Deep Learning 2020.10.10