Tech With Tim Logo
Go back

Text Classification P3

Validation Data

For this specific model we will introduce a new idea of validation data. In the last tutorial when we trained the models accuracy after each epoch on the current training data, data the model had seen before. This can be problematic as it is highly possible the a model can simply memorize input data and its related output and the accuracy will affect how the model is modified as it trains. So to avoid this issue we will sperate our training data into two sections, training and validation. The model will use the validation data to check accuracy after learning from the training data. This will hopefully result in us avoiding a false confidence for our model.

We can split our training data into validation data like so:

x_val = train_data[:10000]
x_train = train_data[10000:]

y_val = train_labels[:10000]
y_train = train_labels[10000:]

Training the Model

We will train the model using the code below:

fitModel = model.fit(x_train, y_train, epochs=40, batch_size=512, validation_data=(x_val, y_val), verbose=1)

Testing the Model

To have a look at the results of our accuracy we can do the following:

results = model.evaluate(test_data, test_labels)
print(results)
Design & Development by Ibezio Logo