multihead self-attention for sentiment analysis not accurate results

i am trying to implement a model for sentiment analysis in text data using self-attention. In this example, i am using multi-head attention but cannot be sure if the results are accurate or not. It always shows approximately same heatmap attention for every example i try

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import tensorflow as tf
from tensorflow.keras.models import Model
from tensorflow.keras.layers import Dense, MultiHeadAttention, Input, LayerNormalization, GlobalAveragePooling1D
# Define the input
num_heads = 8 # Number of attention heads
droup_out = 0.5
lstm_units = 64
attention_dim = 128
learning_rate = 0.0001
maxlen = 20 # sequence length
embedding_dim = 200 # Define your embedding dimension
vocab_size = len(tokenizer.word_index) + 1
# Define the input
inputs = Input(shape=(maxlen,))
embedding_layer = Embedding(input_dim=vocab_size, output_dim=embedding_dim, weights=[embedding_matrix], input_length=maxlen, trainable=False)(inputs)
lstm_layer = LSTM(lstm_units, return_sequences=True)(embedding_layer)
dropout_layer = Dropout(droup_out)(lstm_layer)
# Add the MultiHeadAttention layer
attention_layer = MultiHeadAttention(num_heads=8, key_dim=attention_dim)
attention_output, attention_weights = attention_layer(query=dropout_layer, value=dropout_layer, key=dropout_layer, return_attention_scores=True)
# Normalize the output of the attention layer
attention_output = LayerNormalization(epsilon=1e-6)(attention_output)
# Add a global average pooling layer to reduce the output to a fixed size
pooled_output = GlobalAveragePooling1D()(attention_output)
# Add more layers as needed
dense_output = Dense(units=32, activation='relu')(pooled_output)
output_layer = Dense(1, activation='sigmoid')(dense_output)
# Create the model
model = Model(inputs=inputs, outputs=output_layer)
def lr_schedule(epoch, lr):
if epoch % 5 == 0 and epoch > 0:
return lr / 10
return lr
# Compile the model
optimizer = tf.keras.optimizers.Adam(learning_rate=learning_rate)
model.compile(optimizer=optimizer, loss='binary_crossentropy', metrics=['accuracy'])
# Train the model
early_stopping = EarlyStopping(monitor='val_loss', patience=5, restore_best_weights=True)
history = model.fit(X_train, y_train, epochs=10, batch_size=128, validation_data=(X_val, y_val), callbacks=[early_stopping])
# Evaluate the model
results = model.evaluate(X_test, y_test)
print(f"Test Loss: {results[0]}, Test Accuracy: {results[1]}")
</code>
<code>import tensorflow as tf from tensorflow.keras.models import Model from tensorflow.keras.layers import Dense, MultiHeadAttention, Input, LayerNormalization, GlobalAveragePooling1D # Define the input num_heads = 8 # Number of attention heads droup_out = 0.5 lstm_units = 64 attention_dim = 128 learning_rate = 0.0001 maxlen = 20 # sequence length embedding_dim = 200 # Define your embedding dimension vocab_size = len(tokenizer.word_index) + 1 # Define the input inputs = Input(shape=(maxlen,)) embedding_layer = Embedding(input_dim=vocab_size, output_dim=embedding_dim, weights=[embedding_matrix], input_length=maxlen, trainable=False)(inputs) lstm_layer = LSTM(lstm_units, return_sequences=True)(embedding_layer) dropout_layer = Dropout(droup_out)(lstm_layer) # Add the MultiHeadAttention layer attention_layer = MultiHeadAttention(num_heads=8, key_dim=attention_dim) attention_output, attention_weights = attention_layer(query=dropout_layer, value=dropout_layer, key=dropout_layer, return_attention_scores=True) # Normalize the output of the attention layer attention_output = LayerNormalization(epsilon=1e-6)(attention_output) # Add a global average pooling layer to reduce the output to a fixed size pooled_output = GlobalAveragePooling1D()(attention_output) # Add more layers as needed dense_output = Dense(units=32, activation='relu')(pooled_output) output_layer = Dense(1, activation='sigmoid')(dense_output) # Create the model model = Model(inputs=inputs, outputs=output_layer) def lr_schedule(epoch, lr): if epoch % 5 == 0 and epoch > 0: return lr / 10 return lr # Compile the model optimizer = tf.keras.optimizers.Adam(learning_rate=learning_rate) model.compile(optimizer=optimizer, loss='binary_crossentropy', metrics=['accuracy']) # Train the model early_stopping = EarlyStopping(monitor='val_loss', patience=5, restore_best_weights=True) history = model.fit(X_train, y_train, epochs=10, batch_size=128, validation_data=(X_val, y_val), callbacks=[early_stopping]) # Evaluate the model results = model.evaluate(X_test, y_test) print(f"Test Loss: {results[0]}, Test Accuracy: {results[1]}") </code>
import tensorflow as tf
from tensorflow.keras.models import Model
from tensorflow.keras.layers import Dense, MultiHeadAttention, Input, LayerNormalization, GlobalAveragePooling1D

# Define the input
num_heads = 8         # Number of attention heads
droup_out = 0.5
lstm_units = 64
attention_dim = 128
learning_rate = 0.0001
maxlen = 20 #  sequence length
embedding_dim = 200  # Define your embedding dimension
vocab_size = len(tokenizer.word_index) + 1

# Define the input
inputs = Input(shape=(maxlen,))
embedding_layer = Embedding(input_dim=vocab_size, output_dim=embedding_dim, weights=[embedding_matrix], input_length=maxlen, trainable=False)(inputs)
lstm_layer = LSTM(lstm_units, return_sequences=True)(embedding_layer)
dropout_layer = Dropout(droup_out)(lstm_layer)

# Add the MultiHeadAttention layer
attention_layer = MultiHeadAttention(num_heads=8, key_dim=attention_dim)
attention_output, attention_weights = attention_layer(query=dropout_layer, value=dropout_layer, key=dropout_layer, return_attention_scores=True)


# Normalize the output of the attention layer
attention_output = LayerNormalization(epsilon=1e-6)(attention_output)

# Add a global average pooling layer to reduce the output to a fixed size
pooled_output = GlobalAveragePooling1D()(attention_output)

# Add more layers as needed
dense_output = Dense(units=32, activation='relu')(pooled_output)
output_layer = Dense(1, activation='sigmoid')(dense_output)

# Create the model
model = Model(inputs=inputs, outputs=output_layer)

def lr_schedule(epoch, lr):
    if epoch % 5 == 0 and epoch > 0:
        return lr / 10
    return lr

# Compile the model
optimizer = tf.keras.optimizers.Adam(learning_rate=learning_rate)
model.compile(optimizer=optimizer, loss='binary_crossentropy', metrics=['accuracy'])

# Train the model
early_stopping = EarlyStopping(monitor='val_loss', patience=5, restore_best_weights=True)
history = model.fit(X_train, y_train, epochs=10, batch_size=128, validation_data=(X_val, y_val), callbacks=[early_stopping])

# Evaluate the model
results = model.evaluate(X_test, y_test)
print(f"Test Loss: {results[0]}, Test Accuracy: {results[1]}")


New contributor

phd Mom is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật