top of page

Build, Train and Evaluate a Deep Neural Network Using 20k Trip Advisor Reviews | Sample Paper

Question No.1. NLP Dataset: Dataset consisting of 20k reviews from trip advisor.


Import Libraries/Dataset

  1. Import the required libraries and the dataset (use Google Drive if required).

  2. Check the GPU available (recommended- use free GPU provided by Google Colab).

Data Visualization

  1. Print at least two records from each class of the dataset, for a sanity check that labels match the text.

  2. Plot a bar graph of class distribution in the dataset. Each bar depicts the number of records belonging to a particular class in the dataset. (recommended - matplotlib/seaborn libraries)

  3. Any other visualizations that seem appropriate for this problem are encouraged but not necessary, for the points.

  4. Print the shapes of train and test data.

Data Pre-processing

  1. Need for this Step- Since the models we use cannot accept string inputs or cannot be of the string format. We have to come up with a way of handling this step. The discussion of different ways of handling this step is out of the scope of this assignment.

  2. from TensorFlow hub for this assignment. This link also has a code snippet on how to convert a sentence to a vector. Refer to that for further clarity on this subject.

  3. Bring the train and test data in the required format.


Model Building

  1. Sequential Model layers- Use AT LEAST 5 hidden layers with appropriate input for each. Choose the best number for hidden units and give reasons.

  2. Add L1 regularization to all the layers.

  3. Add one layer of dropout at the appropriate position and give reasons.

  4. Choose the appropriate activation function for all the layers.

  5. Print the model summary.

Model Compilation

  1. Compile the model with the appropriate loss function.

  2. Use an appropriate optimizer. Give reasons for the choice of learning rate and its value.

  3. Use accuracy as a metric.

Model Training

  1. Train the model for an appropriate number of epochs. Print the train and validation accuracy and loss for each epoch. Use the appropriate batch size.

  2. Plot the loss and accuracy history graphs for both train and validation set. Print the total time taken for training.


Model Evaluation

  1. Print the final train and validation loss and accuracy. Print confusion matrix and classification report for the validation dataset. Analyse and report the best and worst performing class.

  2. Print the two most incorrectly classified records for each class in the test dataset.

Hyperparameter Tuning- Build two more models by changing the following hyperparameters one at a time. Write the code for Model Building, Model Compilation, Model Training and Model Evaluation as given in the instructions above for each additional model. (1 + 1 = 2 marks)

1. Regularization: Train a model without regularization

2. Dropout:Change the position and value of dropout layer

Write a comparison between each model and give reasons for the difference in results.




To get solution of above deep learning project you can contact us at or send your requirement details at :


realcode4you@gmail.com
bottom of page