-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainCode.py
2670 lines (2136 loc) · 95.6 KB
/
MainCode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
"""MJAhmadi_NNDL_HW4_Q2.ipynb
Automatically generated by Colaboratory.
Original file is located at
https://colab.research.google.com/drive/1FHXdllZnBlbuiKHE1BtCAloh5R6ev_BF
"""
!nvidia-smi
"""# **2. Data Download and Prepare**"""
!pip install --upgrade --no-cache-dir gdown
!gdown 1lDpsLB-erPd4rvvRguui6i06h1hTKE1K
!gdown 1HctYMsZ-V7t7ipdLOO05S-WNWH5X_l4b
!gdown 1nZ-JnAIQ5fku0FhIFUHCFKguCtEyuNNB
# Load pre-trained GloVe embeddings
!wget http://nlp.stanford.edu/data/glove.6B.zip
!unzip glove*.zip
import nltk
nltk.download('punkt')
"""## Method1"""
import pandas as pd
import numpy as np
import re
from nltk.corpus import stopwords
from nltk.tokenize import word_tokenize
from sklearn.model_selection import train_test_split
from keras.preprocessing.text import Tokenizer
from tensorflow.keras.preprocessing.sequence import pad_sequences
import warnings
# Ignore all warnings
warnings.filterwarnings("ignore")
train_data = pd.read_csv('train.csv')
test_data = pd.read_csv('test.csv')
# Clean the text by removing special characters and converting to lowercase
train_data['cleaned_text'] = train_data['text'].str.replace('[^\w\s\?]', '').str.lower()
test_data['cleaned_text'] = test_data['text'].str.replace('[^\w\s\?]', '').str.lower()
# Tokenize the text
train_data['tokenized_text'] = train_data['cleaned_text'].apply(word_tokenize)
test_data['tokenized_text'] = test_data['cleaned_text'].apply(word_tokenize)
# Remove stopwords
nltk.download('stopwords')
stop_words = set(stopwords.words('english'))
train_data['filtered_text'] = train_data['tokenized_text'].apply(lambda tokens: [word for word in tokens if word not in stop_words])
test_data['filtered_text'] = test_data['tokenized_text'].apply(lambda tokens: [word for word in tokens if word not in stop_words])
# Get the filtered text and labels
X_train = train_data['filtered_text'].values
y_train = train_data['label-fine'].values
X_test = test_data['filtered_text'].values
y_test = test_data['label-fine'].values
# Tokenize the text and convert to sequences
tokenizer = Tokenizer(num_words=400000)
tokenizer.fit_on_texts(X_train)
X_train = tokenizer.texts_to_sequences(X_train)
X_test = tokenizer.texts_to_sequences(X_test)
# Pad the sequences to have the same length
max_sequence_length = max(len(seq) for seq in X_train)
X_train = pad_sequences(X_train, maxlen=max_sequence_length)
X_test = pad_sequences(X_test, maxlen=max_sequence_length)
# Convert labels to categorical
num_classes = train_data['label-fine'].nunique()
y_train = np.eye(num_classes)[y_train]
y_test = np.eye(num_classes)[y_test]
# Replace 'glove_path' with the path to your GloVe embeddings file
glove_path = '/content/glove.6B.300d.txt'
embeddings_index = {}
with open(glove_path, encoding='utf8') as f:
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
# Create an embedding matrix
embedding_dim = 300
word_index = tokenizer.word_index
num_words = min(400000, len(word_index) + 1)
embedding_matrix = np.zeros((num_words, embedding_dim))
for word, i in word_index.items():
if i >= num_words:
continue
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
"""## Method2"""
# Import necessary libraries
import pandas as pd
import numpy as np
import re
import nltk
from nltk.tokenize import word_tokenize
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.preprocessing.sequence import pad_sequences
from sklearn.preprocessing import LabelEncoder
# Load dataset
train_data = pd.read_csv('train.csv')
test_data = pd.read_csv('test.csv')
# Read 'QA_data.csv' with 'errors' parameter and pass the file object to 'pd.read_csv()'
with open('QA_data.csv', 'r', encoding='utf-8', errors='replace') as file:
qa_data = pd.read_csv(file)
# Define function for text normalization
def normalize_text(text):
text = re.sub(r'[^a-zA-Z0-9\?]+', ' ', text)
text = text.lower()
return text
# Normalize text
train_data['text'] = train_data['text'].apply(normalize_text)
test_data['text'] = test_data['text'].apply(normalize_text)
qa_data['text'] = qa_data['text'].apply(normalize_text)
# Tokenize the text
train_data['tokens'] = train_data['text'].apply(word_tokenize)
test_data['tokens'] = test_data['text'].apply(word_tokenize)
qa_data['tokens'] = qa_data['text'].apply(word_tokenize)
# Load GloVe embeddings into a dictionary
embeddings_index = {}
with open('glove.6B.300d.txt') as f:
for line in f:
values = line.split()
word = values[0]
coefs = np.asarray(values[1:], dtype='float32')
embeddings_index[word] = coefs
# Prepare tokenizer
tokenizer = Tokenizer()
tokenizer.fit_on_texts(train_data['tokens'])
# Convert tokens to sequences
train_data['sequences'] = tokenizer.texts_to_sequences(train_data['tokens'])
test_data['sequences'] = tokenizer.texts_to_sequences(test_data['tokens'])
qa_data['sequences'] = tokenizer.texts_to_sequences(qa_data['tokens'])
# Pad sequences
maxlen = max(train_data['sequences'].apply(len))
train_padded_sequences = pad_sequences(train_data['sequences'], maxlen=maxlen)
test_padded_sequences = pad_sequences(test_data['sequences'], maxlen=maxlen)
qa_padded_sequences = pad_sequences(qa_data['sequences'], maxlen=maxlen)
# Encode labels
encoder = LabelEncoder()
encoder.fit(train_data['label-coarse'])
train_data['encoded_labels'] = encoder.transform(train_data['label-coarse'])
test_data['encoded_labels'] = encoder.transform(test_data['label-coarse'])
qa_data['encoded_labels'] = encoder.transform(qa_data['label-coarse'])
# Create an embedding matrix
embedding_dim = 300
vocab_size = len(tokenizer.word_index) + 1
embedding_matrix = np.zeros((vocab_size, embedding_dim))
for word, i in tokenizer.word_index.items():
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embedding_matrix[i] = embedding_vector
"""# **3. Models, Training, and Evaluation**
## **3.1 (Model 1)**
### Method 1
"""
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, return_sequences=True, activation='tanh'))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax', kernel_regularizer=l2(0.001)))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [25, 50, 75, 100]
epochs = 50
num_classes = 6
batch_size = 64
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train, num_classes)
history = model.fit(X_train, y_train_encoded, epochs=epochs, batch_size=batch_size, verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model{h_dim}confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model{h_dim}confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, return_sequences=True, activation='tanh'))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax', kernel_regularizer=l2(0.001)))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [25, 50, 75, 100]
epochs = 50
num_classes = 6
batch_size = 64
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train, num_classes)
history = model.fit(X_train, y_train_encoded, epochs=epochs, batch_size=batch_size, verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model{h_dim}confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model{h_dim}confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, return_sequences=True, activation='tanh'))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax', kernel_regularizer=l2(0.001)))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [100]
epochs = 50
num_classes = 6
batch_size = 64
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train, num_classes)
history = model.fit(X_train, y_train_encoded, epochs=epochs, batch_size=batch_size, verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model{h_dim}confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model{h_dim}confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, return_sequences=True, activation='tanh'))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax', kernel_regularizer=l2(0.001)))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [100]
epochs = 50
num_classes = 6
batch_size = 32
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train, num_classes)
history = model.fit(X_train, y_train_encoded, epochs=epochs, batch_size=batch_size, verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model{h_dim}confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model{h_dim}confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
"""### Method 1 (+ Val)"""
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
from sklearn.model_selection import train_test_split
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, return_sequences=True, activation='tanh'))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax', kernel_regularizer=l2(0.001)))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.plot(history.history['val_accuracy'], label='Validation')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.plot(history.history['val_loss'], label='Validation')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [25, 50, 75, 100]
epochs = 23
num_classes = 6
batch_size = 64
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Split the training set for validation
X_train_split, X_val_split, y_train_split, y_val_split = train_test_split(X_train, y_train, test_size=0.3, random_state=42)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train_split, num_classes)
y_val_encoded = encode_labels(y_val_split, num_classes)
history = model.fit(X_train_split, y_train_encoded, epochs=epochs, batch_size=batch_size, validation_data=(X_val_split, y_val_encoded), verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model_{h_dim}_confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model_{h_dim}_confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
"""### Method 2"""
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.metrics import f1_score, precision_score, recall_score, confusion_matrix
import seaborn as sns
from matplotlib.backends.backend_pdf import PdfPages
import time
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Function to encode labels as one-hot vectors
def encode_labels(labels, num_classes):
return tf.keras.utils.to_categorical(labels, num_classes=num_classes)
from keras.regularizers import l2
# Function to create the LSTM model
def create_lstm_model(input_length, h_dim, num_classes):
model = Sequential()
model.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=input_length, weights=[embedding_matrix], trainable=False))
model.add(LSTM(h_dim, activation='tanh'))
model.add(Dense(num_classes, activation='softmax'))
model.compile(loss='categorical_crossentropy', optimizer=Adam(learning_rate=0.001), metrics=['accuracy'])
return model
# Function to save plots to PDF
def save_plots_to_pdf(filename):
with PdfPages(filename) as pdf:
plt.figure(figsize=(10, 4))
plt.subplot(1, 2, 1)
plt.plot(history.history['accuracy'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Accuracy')
plt.legend()
plt.title(f'Accuracy (h_dim = {h_dim})')
plt.subplot(1, 2, 2)
plt.plot(history.history['loss'], label='Training')
plt.xlabel('Epoch')
plt.ylabel('Loss')
plt.legend()
plt.title(f'Loss (h_dim = {h_dim})')
pdf.savefig(bbox_inches='tight')
# Show the plots in Colab output
plt.show()
plt.close()
# Function to save confusion matrix to PDF
def save_confusion_matrix_to_pdf(y_true, y_pred, filename):
cm = confusion_matrix(y_true, y_pred)
plt.figure(figsize=(6, 6))
sns.heatmap(cm, annot=True, fmt='d', cmap='Blues', cbar=False)
plt.xlabel('Predicted label')
plt.ylabel('True label')
plt.title(f'Confusion matrix (h_dim = {h_dim})')
plt.savefig(filename, bbox_inches='tight')
# Show the plot in Colab output
plt.show()
plt.close()
# Set hyperparameters
h_dimensions = [25, 50, 75, 100]
epochs = 50
num_classes = 6
batch_size = 32
# Iterate over h_dimensions and train the models
for h_dim in h_dimensions:
print(f"Training model with h_dim = {h_dim}")
model = create_lstm_model(maxlen, h_dim, num_classes)
# Encode labels as one-hot vectors
y_train_encoded = encode_labels(y_train, num_classes)
history = model.fit(X_train, y_train_encoded, epochs=epochs, batch_size=batch_size, verbose=2)
train_accuracy = model.evaluate(X_train, encode_labels(y_train, num_classes), verbose=0)[1] * 100
test_accuracy = model.evaluate(X_test, encode_labels(y_test, num_classes), verbose=0)[1] * 100
print(f"Training set accuracy: {train_accuracy:.2f}%")
print(f"Test set accuracy: {test_accuracy:.2f}%")
y_pred_train = np.argmax(model.predict(X_train), axis=1)
y_pred_test = np.argmax(model.predict(X_test), axis=1)
train_f1 = f1_score(y_train, y_pred_train, average='weighted')
test_f1 = f1_score(y_test, y_pred_test, average='weighted')
train_precision = precision_score(y_train, y_pred_train, average='weighted')
test_precision = precision_score(y_test, y_pred_test, average='weighted')
train_recall = recall_score(y_train, y_pred_train, average='weighted')
test_recall = recall_score(y_test, y_pred_test, average='weighted')
print(f"Training set F1-score: {train_f1:.2f}")
print(f"Test set F1-score: {test_f1:.2f}")
print(f"Training set Precision: {train_precision:.2f}")
print(f"Test set Precision: {test_precision:.2f}")
print(f"Training set Recall: {train_recall:.2f}")
print(f"Test set Recall: {test_recall:.2f}")
save_plots_to_pdf(f"model_{h_dim}_plots.pdf")
print("Confusion matrix (training set):")
save_confusion_matrix_to_pdf(y_train, y_pred_train, f"model{h_dim}confusion_matrix_train.pdf")
print("Confusion matrix (test set):")
save_confusion_matrix_to_pdf(y_test, y_pred_test, f"model{h_dim}confusion_matrix_test.pdf")
print("\n")
time.sleep(2) # Wait for 2 seconds before proceeding to the next h_dim
"""### Method 2 (+ Val)"""
import tensorflow as tf
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Embedding, LSTM, Dense
from tensorflow.keras.optimizers import Adam
from sklearn.model_selection import train_test_split
# Set random seeds for reproducibility
np.random.seed(42)
tf.random.set_seed(42)
# Prepare the data
X_train = train_padded_sequences
y_train = train_data['encoded_labels']
X_test = test_padded_sequences
y_test = test_data['encoded_labels']
# Set hyperparameters
h_dimensions = [25, 50, 75, 100]