import seaborn as sns
import matplotlib.pyplot as plt
def plot_attention_scores():
attention_data = sns.load_dataset('attention')
sns.lineplot(x='solutions', y='score', hue='attention', data=attention_data)
plt.title('Attention Scores over Time')
plt.show()
plot_attention_scores()