EthoML / VAME

Variational Animal Motion Embedding - A tool for time series embedding and clustering
https://ethoml.github.io/VAME/
GNU General Public License v3.0
12 stars 2 forks source link

Egocentric Data Parameter Default Set to False #80

Closed npranav9 closed 2 weeks ago

npranav9 commented 2 months ago

Currently we have no value in this parameter by default. This can be confusing to know what data will be grabbed by the model.

luiztauffer commented 2 weeks ago

hi @npranav9 , currently egocentric_data is set to False by default. If you want to change it, you can do so:

config = vame.init_new_project(
    ...
     config_kwargs=dict(
        egocentric_data=True
    ),
)