Skip to content

Commit

Permalink
priority experience replay
Browse files Browse the repository at this point in the history
  • Loading branch information
clstatham committed Sep 5, 2023
1 parent 8617a38 commit ab22fcc
Show file tree
Hide file tree
Showing 16 changed files with 666 additions and 492 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"DockerRun.DisableDockerrc": true,
"rust-analyzer.showUnlinkedFileNotification": false
}
91 changes: 45 additions & 46 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ bevy_rand = "0.3.0"
bevy_prng = { version = "0.1.0", features = ["rand_chacha"] }
serde_json = "1.0.105"
serde_yaml = "0.9.25"
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.2.1", features = ["cuda", "cudnn"] }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.2.1" }
candle-core = { git = "https://github.com/huggingface/candle.git", features = ["cuda", "cudnn"], rev = "dabaa479b966296faad294c40b69d321d51ee4df" }
candle-nn = { git = "https://github.com/huggingface/candle.git", features = ["cuda"], rev = "dabaa479b966296faad294c40b69d321d51ee4df" }
# [profile.dev.package."*"]
# opt-level = 3

Expand Down
Loading

0 comments on commit ab22fcc

Please sign in to comment.