# coding: utf-8 # # Summarizing Text with Amazon Reviews # The objective of this project is to build a model that can create relevant summaries for reviews written about fine foods sold on Amazon. This dataset contains above 500,000 reviews, and is hosted on [Kaggle.](https://www.kaggle.com/snap/amazon-fine-food-reviews) # # To build our model we will use a two-layered bidirectional RNN with LSTMs on the input data and two layers, each with an LSTM using bahdanau attention on the target data. [Jaemin Cho's tutorial](https://github.com/j-min/tf_tutorial_plus/tree/master/RNN_seq2seq/contrib_seq2seq) for seq2seq was really helpful to get the code in working order because this is my first project with TensorFlow 1.1; some of the functions are very different from 1.0. The architecture for this model is similar to Xin Pan's and Peter Liu's, here's their [GitHub page.](https://github.com/tensorflow/models/tree/master/textsum) # # The sections of this project are: # - Inspecting the Data # - Preparing the Data # - Building the Model # - Training the Model # - Making Our Own Summaries # In[49]: import pandas as pd import numpy as np import tensorflow as tf import re from nltk.corpus import stopwords import time from tensorflow.python.layers.core import Dense from tensorflow.python.ops.rnn_cell_impl import _zero_state_tensors print('TensorFlow Version: {}'.format(tf.__version__)) ### Cinvert reviews.csv to UTF8 with Notepad # ## Insepcting the Data def encodeToUTF8Adv(text): encResults = text.encode('utf-8', "ignore") #return str(encResults.decode('latin-1', "ignore")) return str(encResults.decode('utf-8', "remove")) def encodeToLatin1(text): #n_String=replaceUmlauts(text) encResults = text.encode('utf-8', "ignore") #encResults = text.encode('utf-8', "ignore") return str(encResults.decode('latin-1', "ignore")) # In[2]: # https://stackoverflow.com/questions/18039057/python-pandas-error-tokenizing-data #https://www.tensorflow.org/versions/r1.1/install/install_linux#the_url_of_the_tensorflow_python_package #https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.1.0-cp35-cp35m-linux_x86_64.whl reviews = pd.read_csv("reviews1.csv", sep=';') # In[3]: reviews.shape # In[4]: reviews.head() # In[5]: # Check for any nulls values reviews.isnull().sum() # In[6]: # Remove null values and unneeded features reviews = reviews.dropna() reviews = reviews.drop(['Id','ProductId','UserId','ProfileName','HelpfulnessNumerator','HelpfulnessDenominator', 'Score','Time'], 1) reviews = reviews.reset_index(drop=True) # In[7]: reviews.head() # In[8]: """ # Inspecting some of the reviews for i in range(5): print("Review #",i+1) #print(reviews.Summary[i]) #print(reviews.Text[i]) print() """ # ## Preparing the Data # In[9]: # A list of contractions from http://stackoverflow.com/questions/19790188/expanding-english-language-contractions-in-python contractions = { "ain't": "am not", "aren't": "are not", "can't": "cannot", "can't've": "cannot have", "'cause": "because", "could've": "could have", "couldn't": "could not", "couldn't've": "could not have", "didn't": "did not", "doesn't": "does not", "don't": "do not", "hadn't": "had not", "hadn't've": "had not have", "hasn't": "has not", "haven't": "have not", "he'd": "he would", "he'd've": "he would have", "he'll": "he will", "he's": "he is", "how'd": "how did", "how'll": "how will", "how's": "how is", "i'd": "i would", "i'll": "i will", "i'm": "i am", "i've": "i have", "isn't": "is not", "it'd": "it would", "it'll": "it will", "it's": "it is", "let's": "let us", "ma'am": "madam", "mayn't": "may not", "might've": "might have", "mightn't": "might not", "must've": "must have", "mustn't": "must not", "needn't": "need not", "oughtn't": "ought not", "shan't": "shall not", "sha'n't": "shall not", "she'd": "she would", "she'll": "she will", "she's": "she is", "should've": "should have", "shouldn't": "should not", "that'd": "that would", "that's": "that is", "there'd": "there had", "there's": "there is", "they'd": "they would", "they'll": "they will", "they're": "they are", "they've": "they have", "wasn't": "was not", "we'd": "we would", "we'll": "we will", "we're": "we are", "we've": "we have", "weren't": "were not", "what'll": "what will", "what're": "what are", "what's": "what is", "what've": "what have", "where'd": "where did", "where's": "where is", "who'll": "who will", "who's": "who is", "won't": "will not", "wouldn't": "would not", "you'd": "you would", "you'll": "you will", "you're": "you are" } # In[203]: def clean_text(text, remove_stopwords = True): '''Remove unwanted characters, stopwords, and format the text to create fewer nulls word embeddings''' # Convert words to lower case text = text.lower() # Replace contractions with their longer forms if True: text = text.split() new_text = [] for word in text: if word in contractions: new_text.append(contractions[word]) else: new_text.append(word) text = " ".join(new_text) # Format words and remove unwanted characters text = re.sub(r'https?:\/\/.*[\r\n]*', '', text, flags=re.MULTILINE) text = re.sub(r'\', ' ', text) text = re.sub(r'\'', ' ', text) # Optionally, remove stop words if remove_stopwords: text = text.split() stops = set(stopwords.words("german")) text = [w for w in text if not w in stops] text = " ".join(text) return text # We will remove the stopwords from the texts because they do not provide much use for training our model. However, we will keep them for our summaries so that they sound more like natural phrases. # In[204]: # Clean the summaries and texts clean_summaries = [] for summary in reviews.Summary: clean_summaries.append(clean_text(summary, remove_stopwords=False)) print("Summaries are complete.") clean_texts = [] for text in reviews.Text: clean_texts.append(clean_text(text)) print("Texts are complete.") # In[206]: """ # Inspect the cleaned summaries and texts to ensure they have been cleaned well for i in range(5): print("Clean Review #",i+1) #print(clean_summaries[i]) #print(clean_texts[i]) print() """ # In[207]: def count_words(count_dict, text): '''Count the number of occurrences of each word in a set of text''' for sentence in text: for word in sentence.split(): if word not in count_dict: count_dict[word] = 1 else: count_dict[word] += 1 # In[208]: # Find the number of times each word was used and the size of the vocabulary word_counts = {} count_words(word_counts, clean_summaries) count_words(word_counts, clean_texts) print("Size of Vocabulary:", len(word_counts)) # In[209]: # Load Conceptnet Numberbatch's (CN) embeddings, similar to GloVe, but probably better # (https://github.com/commonsense/conceptnet-numberbatch) embeddings_index = {} #with open('/home/Framework/Prototyp/Text-Summarization-with-Amazon-Reviews-master/numberbatch-17.06.txt', encoding='utf-8') as f: with open('/dev/shm/numberbatch-17.06.txt', encoding='utf-8') as f: for line in f: values = line.split(' ') word = values[0] embedding = np.asarray(values[1:], dtype='float32') embeddings_index[word] = embedding print('Word embeddings:', len(embeddings_index)) # In[210]: # Find the number of words that are missing from CN, and are used more than our threshold. missing_words = 0 threshold = 2 for word, count in word_counts.items(): if count > threshold: if word not in embeddings_index: missing_words += 1 missing_ratio = round(missing_words/len(word_counts),4)*100 print("Number of words missing from CN:", missing_words) print("Percent of words that are missing from vocabulary: {}%".format(missing_ratio)) # I use a threshold of 20, so that words not in CN can be added to our word_embedding_matrix, but they need to be common enough in the reviews so that the model can understand their meaning. # In[211]: # Limit the vocab that we will use to words that appear ≥ threshold or are in GloVe #dictionary to convert words to integers vocab_to_int = {} value = 0 for word, count in word_counts.items(): if count >= threshold or word in embeddings_index: vocab_to_int[word] = value value += 1 # Special tokens that will be added to our vocab codes = ["","","",""] # Add codes to vocab for code in codes: vocab_to_int[code] = len(vocab_to_int) # Dictionary to convert integers to words int_to_vocab = {} for word, value in vocab_to_int.items(): int_to_vocab[value] = word usage_ratio = round(len(vocab_to_int) / len(word_counts),4)*100 print("Total number of unique words:", len(word_counts)) print("Number of words we will use:", len(vocab_to_int)) print("Percent of words we will use: {}%".format(usage_ratio)) # In[212]: # Need to use 300 for embedding dimensions to match CN's vectors. embedding_dim = 300 nb_words = len(vocab_to_int) # Create matrix with default values of zero word_embedding_matrix = np.zeros((nb_words, embedding_dim), dtype=np.float32) for word, i in vocab_to_int.items(): if word in embeddings_index: word_embedding_matrix[i] = embeddings_index[word] else: # If word not in CN, create a random embedding for it new_embedding = np.array(np.random.uniform(-1.0, 1.0, embedding_dim)) embeddings_index[word] = new_embedding word_embedding_matrix[i] = new_embedding # Check if value matches len(vocab_to_int) print(len(word_embedding_matrix)) # In[213]: def convert_to_ints(text, word_count, unk_count, eos=False): '''Convert words in text to an integer. If word is not in vocab_to_int, use UNK's integer. Total the number of words and UNKs. Add EOS token to the end of texts''' ints = [] for sentence in text: sentence_ints = [] for word in sentence.split(): word_count += 1 if word in vocab_to_int: sentence_ints.append(vocab_to_int[word]) else: sentence_ints.append(vocab_to_int[""]) unk_count += 1 if eos: sentence_ints.append(vocab_to_int[""]) ints.append(sentence_ints) return ints, word_count, unk_count """ # In[214]: # Apply convert_to_ints to clean_summaries and clean_texts word_count = 0 unk_count = 0 int_summaries, word_count, unk_count = convert_to_ints(clean_summaries, word_count, unk_count) int_texts, word_count, unk_count = convert_to_ints(clean_texts, word_count, unk_count, eos=True) unk_percent = round(unk_count/word_count,4)*100 print("Total number of words in headlines:", word_count) print("Total number of UNKs in headlines:", unk_count) print("Percent of words that are UNK: {}%".format(unk_percent)) # In[215]: def create_lengths(text): '''Create a data frame of the sentence lengths from a text''' lengths = [] for sentence in text: lengths.append(len(sentence)) return pd.DataFrame(lengths, columns=['counts']) # In[216]: lengths_summaries = create_lengths(int_summaries) lengths_texts = create_lengths(int_texts) print("Summaries:") print(lengths_summaries.describe()) print() print("Texts:") print(lengths_texts.describe()) """ # In[217]: """ # Inspect the length of texts print(np.percentile(lengths_texts.counts, 90)) print(np.percentile(lengths_texts.counts, 95)) print(np.percentile(lengths_texts.counts, 99)) # In[218]: # Inspect the length of summaries print(np.percentile(lengths_summaries.counts, 90)) print(np.percentile(lengths_summaries.counts, 95)) print(np.percentile(lengths_summaries.counts, 99)) """ # In[219]: def unk_counter(sentence): '''Counts the number of time UNK appears in a sentence.''' unk_count = 0 for word in sentence: if word == vocab_to_int[""]: unk_count += 1 return unk_count # In[220]: # Sort the summaries and texts by the length of the texts, shortest to longest # Limit the length of summaries and texts based on the min and max ranges. # Remove reviews that include too many UNKs sorted_summaries = [] sorted_texts = [] max_text_length = 15000 max_summary_length = 800 min_length = 2 unk_text_limit = 1 unk_summary_limit = 0 """ for length in range(min(lengths_texts.counts), max_text_length): for count, words in enumerate(int_summaries): if (len(int_summaries[count]) >= min_length and len(int_summaries[count]) <= max_summary_length and len(int_texts[count]) >= min_length and unk_counter(int_summaries[count]) <= unk_summary_limit and unk_counter(int_texts[count]) <= unk_text_limit and length == len(int_texts[count]) ): sorted_summaries.append(int_summaries[count]) sorted_texts.append(int_texts[count]) # Compare lengths to ensure they match print(len(sorted_summaries)) print(len(sorted_texts)) """ # ## Building the Model # In[221]: def model_inputs(): '''Create palceholders for inputs to the model''' input_data = tf.placeholder(tf.int32, [None, None], name='input') targets = tf.placeholder(tf.int32, [None, None], name='targets') lr = tf.placeholder(tf.float32, name='learning_rate') keep_prob = tf.placeholder(tf.float32, name='keep_prob') summary_length = tf.placeholder(tf.int32, (None,), name='summary_length') max_summary_length = tf.reduce_max(summary_length, name='max_dec_len') text_length = tf.placeholder(tf.int32, (None,), name='text_length') return input_data, targets, lr, keep_prob, summary_length, max_summary_length, text_length # In[222]: def process_encoding_input(target_data, vocab_to_int, batch_size): '''Remove the last word id from each batch and concat the to the begining of each batch''' ending = tf.strided_slice(target_data, [0, 0], [batch_size, -1], [1, 1]) dec_input = tf.concat([tf.fill([batch_size, 1], vocab_to_int['']), ending], 1) return dec_input # In[223]: def encoding_layer(rnn_size, sequence_length, num_layers, rnn_inputs, keep_prob): '''Create the encoding layer''' for layer in range(num_layers): with tf.variable_scope('encoder_{}'.format(layer)): cell_fw = tf.contrib.rnn.LSTMCell(rnn_size, initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=2)) cell_fw = tf.contrib.rnn.DropoutWrapper(cell_fw, input_keep_prob = keep_prob) cell_bw = tf.contrib.rnn.LSTMCell(rnn_size, initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=2)) cell_bw = tf.contrib.rnn.DropoutWrapper(cell_bw, input_keep_prob = keep_prob) enc_output, enc_state = tf.nn.bidirectional_dynamic_rnn(cell_fw, cell_bw, rnn_inputs, sequence_length, dtype=tf.float32) # Join outputs since we are using a bidirectional RNN enc_output = tf.concat(enc_output,2) return enc_output, enc_state # In[224]: def training_decoding_layer(dec_embed_input, summary_length, dec_cell, initial_state, output_layer, vocab_size, max_summary_length): '''Create the training logits''' training_helper = tf.contrib.seq2seq.TrainingHelper(inputs=dec_embed_input, sequence_length=summary_length, time_major=False) training_decoder = tf.contrib.seq2seq.BasicDecoder(dec_cell, training_helper, initial_state, output_layer) training_logits, _ = tf.contrib.seq2seq.dynamic_decode(training_decoder, output_time_major=False, impute_finished=True, maximum_iterations=max_summary_length) return training_logits # In[225]: def inference_decoding_layer(embeddings, start_token, end_token, dec_cell, initial_state, output_layer, max_summary_length, batch_size): '''Create the inference logits''' start_tokens = tf.tile(tf.constant([start_token], dtype=tf.int32), [batch_size], name='start_tokens') inference_helper = tf.contrib.seq2seq.GreedyEmbeddingHelper(embeddings, start_tokens, end_token) inference_decoder = tf.contrib.seq2seq.BasicDecoder(dec_cell, inference_helper, initial_state, output_layer) inference_logits, _ = tf.contrib.seq2seq.dynamic_decode(inference_decoder, output_time_major=False, impute_finished=True, maximum_iterations=max_summary_length) return inference_logits # In[226]: def decoding_layer(dec_embed_input, embeddings, enc_output, enc_state, vocab_size, text_length, summary_length, max_summary_length, rnn_size, vocab_to_int, keep_prob, batch_size, num_layers): '''Create the decoding cell and attention for the training and inference decoding layers''' for layer in range(num_layers): with tf.variable_scope('decoder_{}'.format(layer)): lstm = tf.contrib.rnn.LSTMCell(rnn_size, initializer=tf.random_uniform_initializer(-0.1, 0.1, seed=2)) dec_cell = tf.contrib.rnn.DropoutWrapper(lstm, input_keep_prob = keep_prob) output_layer = Dense(vocab_size, kernel_initializer = tf.truncated_normal_initializer(mean = 0.0, stddev=0.1)) attn_mech = tf.contrib.seq2seq.BahdanauAttention(rnn_size, enc_output, text_length, normalize=False, name='BahdanauAttention') dec_cell = tf.contrib.seq2seq.DynamicAttentionWrapper(dec_cell, attn_mech, rnn_size) initial_state = tf.contrib.seq2seq.DynamicAttentionWrapperState(enc_state[0], _zero_state_tensors(rnn_size, batch_size, tf.float32)) with tf.variable_scope("decode"): training_logits = training_decoding_layer(dec_embed_input, summary_length, dec_cell, initial_state, output_layer, vocab_size, max_summary_length) with tf.variable_scope("decode", reuse=True): inference_logits = inference_decoding_layer(embeddings, vocab_to_int[''], vocab_to_int[''], dec_cell, initial_state, output_layer, max_summary_length, batch_size) return training_logits, inference_logits # In[227]: def seq2seq_model(input_data, target_data, keep_prob, text_length, summary_length, max_summary_length, vocab_size, rnn_size, num_layers, vocab_to_int, batch_size): '''Use the previous functions to create the training and inference logits''' # Use Numberbatch's embeddings and the newly created ones as our embeddings embeddings = word_embedding_matrix enc_embed_input = tf.nn.embedding_lookup(embeddings, input_data) enc_output, enc_state = encoding_layer(rnn_size, text_length, num_layers, enc_embed_input, keep_prob) dec_input = process_encoding_input(target_data, vocab_to_int, batch_size) dec_embed_input = tf.nn.embedding_lookup(embeddings, dec_input) training_logits, inference_logits = decoding_layer(dec_embed_input, embeddings, enc_output, enc_state, vocab_size, text_length, summary_length, max_summary_length, rnn_size, vocab_to_int, keep_prob, batch_size, num_layers) return training_logits, inference_logits # In[228]: def pad_sentence_batch(sentence_batch): """Pad sentences with so that each sentence of a batch has the same length""" max_sentence = max([len(sentence) for sentence in sentence_batch]) return [sentence + [vocab_to_int['']] * (max_sentence - len(sentence)) for sentence in sentence_batch] # In[229]: def get_batches(summaries, texts, batch_size): """Batch summaries, texts, and the lengths of their sentences together""" for batch_i in range(0, len(texts)//batch_size): start_i = batch_i * batch_size summaries_batch = summaries[start_i:start_i + batch_size] texts_batch = texts[start_i:start_i + batch_size] pad_summaries_batch = np.array(pad_sentence_batch(summaries_batch)) pad_texts_batch = np.array(pad_sentence_batch(texts_batch)) # Need the lengths for the _lengths parameters pad_summaries_lengths = [] for summary in pad_summaries_batch: pad_summaries_lengths.append(len(summary)) pad_texts_lengths = [] for text in pad_texts_batch: pad_texts_lengths.append(len(text)) yield pad_summaries_batch, pad_texts_batch, pad_summaries_lengths, pad_texts_lengths # In[230]: # Set the Hyperparameters epochs = 20000 batch_size = 64 rnn_size = 256 num_layers = 2 learning_rate = 0.005 keep_probability = 0.75 # In[231]: """ # Build the graph train_graph = tf.Graph() # Set the graph to default to ensure that it is ready for training with train_graph.as_default(): # Load the model inputs input_data, targets, lr, keep_prob, summary_length, max_summary_length, text_length = model_inputs() # Create the training and inference logits training_logits, inference_logits = seq2seq_model(tf.reverse(input_data, [-1]), targets, keep_prob, text_length, summary_length, max_summary_length, len(vocab_to_int)+1, rnn_size, num_layers, vocab_to_int, batch_size) # Create tensors for the training logits and inference logits training_logits = tf.identity(training_logits.rnn_output, 'logits') inference_logits = tf.identity(inference_logits.sample_id, name='predictions') # Create the weights for sequence_loss masks = tf.sequence_mask(summary_length, max_summary_length, dtype=tf.float32, name='masks') with tf.name_scope("optimization"): # Loss function cost = tf.contrib.seq2seq.sequence_loss( training_logits, targets, masks) # Optimizer optimizer = tf.train.AdamOptimizer(learning_rate) # Gradient Clipping gradients = optimizer.compute_gradients(cost) capped_gradients = [(tf.clip_by_value(grad, -5., 5.), var) for grad, var in gradients if grad is not None] train_op = optimizer.apply_gradients(capped_gradients) print("Graph is built.") """ # ## Training the Model # Since I am training this model on my MacBook Pro, it would take me days if I used the whole dataset. For this reason, I am only going to use a subset of the data, so that I can train it over night. Normally I use [FloydHub's](https://www.floydhub.com/) services for my GPU needs, but it would take quite a bit of time to upload the dataset and ConceptNet Numberbatch, so I'm not going to bother with that for this project. # # I chose not use use the start of the subset because I didn't want to make it too easy for my model. The texts that I am using are closer to the median lengths; I thought this would be more fair. # In[234]: # Subset the data for training #start = 200000 #end = start + 50000 start=0 #end=len(reviews.Text) end=550 sorted_summaries_short = sorted_summaries[start:end] sorted_texts_short = sorted_texts[start:end] #print("The shortest text length:", len(sorted_texts_short[0])) #print("The longest text length:",len(sorted_texts_short[-1])) # In[158]: # Train the Model learning_rate_decay = 0.95 min_learning_rate = 0.0005 display_step = 20 # Check training loss after every 20 batches stop_early = 0 stop = 799999 # If the update loss does not decrease in 3 consecutive update checks, stop training per_epoch = 5 # Make 3 update checks per epoch update_check = (len(sorted_texts_short)//batch_size//per_epoch)-1 update_loss = 0 batch_loss = 0 summary_update_loss = [] # Record the update losses for saving improvements in the model """ checkpoint = "/home/Framework/Prototyp/Text-Summarization-with-Amazon-Reviews-master/best_model.ckpt" with tf.Session(graph=train_graph) as sess: sess.run(tf.global_variables_initializer()) # If we want to continue training a previous session #loader = tf.train.import_meta_graph("./" + checkpoint + '.meta') #loader.restore(sess, checkpoint) print("Started tf.Session Training") for epoch_i in range(1, epochs+1): print("I am in epoche:", epoch_i) update_loss = 0 batch_loss = 0 for batch_i, (summaries_batch, texts_batch, summaries_lengths, texts_lengths) in enumerate( get_batches(sorted_summaries_short, sorted_texts_short, batch_size)): start_time = time.time() _, loss = sess.run( [train_op, cost], {input_data: texts_batch, targets: summaries_batch, lr: learning_rate, summary_length: summaries_lengths, text_length: texts_lengths, keep_prob: keep_probability}) batch_loss += loss update_loss += loss end_time = time.time() batch_time = end_time - start_time print("batch_i:", batch_i) print("display_step:", display_step) if batch_i % display_step == 0 and batch_i > 0: print('Epoch {:>3}/{} Batch {:>4}/{} - Loss: {:>6.3f}, Seconds: {:>4.2f}' .format(epoch_i, epochs, batch_i, len(sorted_texts_short) // batch_size, batch_loss / display_step, batch_time*display_step)) batch_loss = 0 if batch_i % update_check == 0 and batch_i > 0: print("Average loss for this update:", round(update_loss/update_check,3)) summary_update_loss.append(update_loss) # If the update loss is at a new minimum, save the model if update_loss <= min(summary_update_loss): print('New Record!') stop_early = 0 saver = tf.train.Saver() saver.save(sess, checkpoint) else: print("No Improvement.") stop_early += 1 if stop_early == stop: break update_loss = 0 # Reduce learning rate, but not below its minimum value learning_rate *= learning_rate_decay if learning_rate < min_learning_rate: learning_rate = min_learning_rate if stop_early == stop: print("Stopping Training.") break """ # ## Making Our Own Summaries # To see the quality of the summaries that this model can generate, you can either create your own review, or use a review from the dataset. You can set the length of the summary to a fixed value, or use a random value like I have here. # In[114]: def text_to_seq(text): '''Prepare the text for the model''' text = clean_text(text) return [vocab_to_int.get(word, vocab_to_int['']) for word in text.split()] # In[167]: # Create your own review or use one from the dataset #input_sentence = "I have never eaten an apple before, but this red one was nice. \ #I think that I will try a green apple next time." #text = text_to_seq(input_sentence) random = np.random.randint(0,len(clean_texts)) input_sentence = clean_texts[random] text = text_to_seq(clean_texts[random]) checkpoint = "/home/Framework/Prototyp/Text-Summarization-with-Amazon-Reviews-master/best_model.ckpt" loaded_graph = tf.Graph() with tf.Session(graph=loaded_graph) as sess: # Load saved model loader = tf.train.import_meta_graph(checkpoint + '.meta') loader.restore(sess, checkpoint) input_data = loaded_graph.get_tensor_by_name('input:0') logits = loaded_graph.get_tensor_by_name('predictions:0') text_length = loaded_graph.get_tensor_by_name('text_length:0') summary_length = loaded_graph.get_tensor_by_name('summary_length:0') keep_prob = loaded_graph.get_tensor_by_name('keep_prob:0') #Multiply by batch_size to match the model's input parameters answer_logits = sess.run(logits, {input_data: [text]*batch_size, summary_length: [15], text_length: [len(text)]*batch_size, keep_prob: 1.0})[0] # Remove the padding from the tweet # summary_length: [np.random.randint(5,8)], pad = vocab_to_int[""] """ print('Original Text:', input_sentence) print('\nText') print(' Word Ids: {}'.format([i for i in text])) print(' Input Words: {}'.format(" ".join([int_to_vocab[i] for i in text]))) print('\nSummary') print(' Word Ids: {}'.format([i for i in answer_logits if i != pad])) print(' Response Words: {}'.format(" ".join([int_to_vocab[i] for i in answer_logits if i != pad]))) """ fo = open("/home/Framework/Prototyp/Text-Summarization-with-Amazon-Reviews-master/results.txt", "a+", encoding="utf-8") fo.write("input_sentence:"+str(input_sentence)) fo.write("\n#############################\n") fo.write("Text - Word Ids:"+str(format([i for i in text]))) fo.write("\n#############################\n") fo.write("Text - Input Words:"+str(format(" ".join([int_to_vocab[i] for i in text])))) fo.write("\n#############################\n") fo.write("Summary - Word Ids:"+str(format([i for i in answer_logits if i != pad]))) fo.write("\n#############################\n") fo.write("Summary - Response Words:"+str(format(" ".join([int_to_vocab[i] for i in answer_logits if i != pad])))) fo.write("\n#############################\n") fo.close() # Examples of reviews and summaries: # - Review(1): The coffee tasted great and was at such a good price! I highly recommend this to everyone! # - Summary(1): great coffee # # # - Review(2): This is the worst cheese that I have ever bought! I will never buy it again and I hope you won't either! # - Summary(2): omg gross gross # # # - Review(3): love individual oatmeal cups found years ago sam quit selling sound big lots quit selling found target expensive buy individually trilled get entire case time go anywhere need water microwave spoon know quaker flavor packets # - Summary(3): love it # ## Summary # I hope that you found this project to be rather interesting and informative. One of my main recommendations for working with this dataset and model is either use a GPU, a subset of the dataset, or plenty of time to train your model. As you might be able to expect, the model will not be able to make good predictions just by seeing many reviews, it needs so see the reviews many times to be able to understand the relationship between words and between descriptions & summaries. # # In short, I'm pleased with how well this model performs. After creating numerous reviews and checking those from the dataset, I can happily say that most of the generated summaries are appropriate, some of them are great, and some of them make mistakes. I'll try to improve this model and if it gets better, I'll update my GitHub. # # Thanks for reading! # In[ ]: