ObjectInputStream in = new ObjectInputStream(new FileInputStream("tmp.txt"));
list = (FloatArrayList)in.readObject();
in.close();
System.out.println(Arrays.toString(list.toArray()));
}
void generation(String[] args)
{
Pattern ignore = Pattern.compile("AM-MOD|AM-ADV|C-.+|R-.+");