Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add memory replay buffer #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Adwaver4157
Copy link
Collaborator

batchを呼び出すたびにファイルからロードしていたので遅かったのを
データセットをインスタンスかするときにファイルからメモリーに全てロードして、
batchを呼び出す時はメモリーからデータロードするようにしました
(データロードは毎秒1iterationが3iterationになりました)

Closes #10

@Adwaver4157
Copy link
Collaborator Author

3 iter/sの再現は以下のコマンドでできます。
python train.py --config-dir configs/image/transport_mh/diffusion_policy_cnn --config-name=config.yaml training.seed=42 training.device=cuda:2 hydra.run.dir=data/outputs/${now:%Y.%m.%d}/${now:%H.%M.%S}_${name}_${task_name} dataloader.batch_size=64 dataloader.num_workers=8 task.dataset.use_cache=false

末尾のtask.dataset.use_cache=falseによってMemoryReplayBufferが選択され、メモリーにデータセットが載るようになります。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Mount datasets on memory
2 participants