NLP - Word Embeddings
Identify the error in this Word2Vec training code snippet:
from gensim.models import Word2Vec
sentences = [['data', 'science'], ['deep', 'learning']]
model = Word2Vec(sentences, vector_size=100, window=5, sg=2)
model.train(sentences, total_examples=2, epochs=10)
