bernhard2202 / twitter-sentiment-analysis

Twitter Sentiment Analysis with Deep Convolutional Neural Networks and LSTMs in TensorFlow.
38 stars 9 forks source link

Computing a baseline #18

Closed AndreiBarsan closed 8 years ago

AndreiBarsan commented 8 years ago

According to the CIL project description, we must compare our solution with a baseline.

You compare your novel algorithm to at least two baseline algorithms. For the baselines, you can use the implementations you developed as part of the programming assignments.

So, I suppose we can just use something like logistic regression over the averaged/concatenated embeddings of the (fixed length) sentences?

I think in the end we could have a table in the paper with the following rows:

What do you think?

AndreiBarsan commented 8 years ago

I'll compute the simple baseline.

AndreiBarsan commented 8 years ago

Computed simple baseline with averaging in PR #23. Will also work on tf-idf classification.

AndreiBarsan commented 8 years ago

PR #25 also contains a tf-idf baseline.

bernhard2202 commented 8 years ago

Now we have 2 baselines computed SGD (averaging, concatenation) and tf-idf - therefore closed.