Im having problems when trying to initialize the variable:
Map<Sentence, Float>[] vectorValueSentences; // this is ok
/* but this is not */ vectorValueSentences = new HashMap<Sentence, Float>()[100];
I search on what to do but i didnt find any. I read that the object to be initialize has to be static but i dont find a way to declare the Map static.
Thank you for your help!