RatInABox
RatInABox copied to clipboard
A python package for simulating 2D motion in continuous environment and spatial cell types (e.g. place cell).
Thank you for the great project! I was wondering if there are any plans to integrate it with MuJoCo, specifically with models like the [rodent model](https://github.com/google-deepmind/dm_control/blob/main/dm_control/locomotion/walkers/rodent.py).
Hiya - I am working on some code to estimate grid scales and was borrowing code from this library to plot idealised gridcells with a rectified cosine. I noticed, however,...
Currently the way RatInABox estimates rate maps is using `np.histogram2d`. There are two main issues: * This is not massively principled - it might be cleaner to do a proper...
We should provide a standardised way to export RiaB data (times, trajectories and cell data). This follows on from a conversation I had with @niksirbi and @sfmig about integrating some...
Made it so that one can call the following to save/import data from parquets:- ```python # Export data into a dataframe ag_his = Ag.export_history(save_to_file=True) pcs_his = PCs.export_history(save_to_file=True) Ag.import_history(filename='agent_agent_0_history.parquet') PCs.import_history(filename='neuron_PlaceCells_history.parquet') ```...