First of all cleaning, the data is a big task itself.
Then I am trying to vectorize the sentences using TfidfVectorizer(), but it is crashing the whole system due to the unavailability of ram in spite of having 12gb ram.
However, if I am able to convert each sentence to a vector, What should be the first layer to feed this data in.
and Vectorization will not consider the ordering of words. it will simply become a bag of words. while analysis of review should be done considering the relative order or words.
How can I do it using word embeddings because the length of the sentences is big and how to crop each sentence to bring them on the same level, I mean which part should be cropped from front or back?
Can u provide some suggestions to implement this model and overcome this difficulties?
