You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice that you adopt RLE (Running Length Encoding) instead of the full series of tokens as the embedding of one trajectory., which you didn't mention in your paper. As far as I know, this is not a traditional way to compress trajectory data. If you just input the single values without counts how can you retrieve the trajectory from it? This compression may cause some information loss during training. But I compared model_rle with model_full, model_full accidentally outperforms model_rle on three tasks, especially self-similarity : )
In addition, by adopting RLE on cell token, the length of the trajectory is reduced by a large margin. When I tried to apply t2vec on other datasets which have longer trajectories, if I use full trajectory instead of RLE, I couldn't handle trajectories longer than 400 points with default model parameters (I use a GPU-server with 24GB Graphic Memory).
I hope this repo is still active : ) Thanks in advance.
The text was updated successfully, but these errors were encountered:
Hi boathit,
Thanks for this inspirational work!
I notice that you adopt RLE (Running Length Encoding) instead of the full series of tokens as the embedding of one trajectory., which you didn't mention in your paper. As far as I know, this is not a traditional way to compress trajectory data. If you just input the single values without counts how can you retrieve the trajectory from it? This compression may cause some information loss during training. But I compared model_rle with model_full, model_full accidentally outperforms model_rle on three tasks, especially self-similarity : )
In addition, by adopting RLE on cell token, the length of the trajectory is reduced by a large margin. When I tried to apply t2vec on other datasets which have longer trajectories, if I use full trajectory instead of RLE, I couldn't handle trajectories longer than 400 points with default model parameters (I use a GPU-server with 24GB Graphic Memory).
I hope this repo is still active : ) Thanks in advance.
The text was updated successfully, but these errors were encountered: