From e8e6bda2fbb34644f357bdafd1fdb582ae898508 Mon Sep 17 00:00:00 2001 From: Serhat Dinleyen <90914718+seroetr@users.noreply.github.com> Date: Mon, 8 Aug 2022 16:53:38 +0300 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 63d95b4..301658d 100644 --- a/README.md +++ b/README.md @@ -8,5 +8,6 @@ ## Sentiment Analysis with Deep Learning using ANN and CNN in Tensorflow - Simple `Artificial Neural Network (ANN)` and `1D Convolutional Neural Network (CNN)` models are used to predict sentiment analysis for IMDB movei reviews, which is a binary classification problem. - Spacy `en_core_web_lg` pretrained model (https://spacy.io/models/en) is used to convert texts to vectors in dataframes. +- Feature scaling is applied to X_train and X_test using MinMaxScaler before being fed inputs into the neural network.