-
Notifications
You must be signed in to change notification settings - Fork 136
GSoC: Integration of Agents.jl with RL methods #1170
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
base: main
Are you sure you want to change the base?
Changes from all commits
569cdac
438d861
d024f37
906a6c7
6f5ab24
6463646
ece4017
fd5d309
c1b69d9
92d8bc6
af6bdce
0687f2c
9d9c9ee
b839b77
93678f3
c318539
2da0515
5f05a06
5327055
5fc5755
864302e
d43fd04
186c9c7
1062488
b1e37e8
e600392
5fc8d06
bfa27a7
7625bd2
b918301
b8a9a4f
1fde568
0ee83ea
30d5e6d
3eeec19
2fb36da
f7df9ce
9657ec4
33bb8b2
3a638d2
ac20b28
bf86bd0
c3c984b
f1bf7f6
1b367d0
de7a081
73a7c49
d336fd0
c37b554
aa0222a
47a3240
988821f
2e21eca
4b9edd1
19b85bb
4eb1985
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,6 @@ test/adata.arrow | |
test/mdata.arrow | ||
*.csv | ||
*.arrow | ||
tutorial.md | ||
tutorial.md | ||
log | ||
examples/rl/log |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,25 +30,31 @@ StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a" | |
|
||
[weakdeps] | ||
Arrow = "69666777-d1a9-59fb-9406-91d4454c9d45" | ||
Crux = "e51cc422-768a-4345-bb8e-2246287ae729" | ||
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c" | ||
GraphMakie = "1ecd5474-83a3-4783-bb4f-06765db800d2" | ||
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" | ||
OSMMakie = "76b6901f-8821-46bb-9129-841bc9cfe677" | ||
POMDPs = "a93abf59-7444-517b-a68a-c42f96afdd7d" | ||
|
||
[extensions] | ||
AgentsArrow = "Arrow" | ||
AgentsGraphVisualizations = ["Makie", "GraphMakie"] | ||
AgentsOSMVisualizations = ["Makie", "OSMMakie"] | ||
AgentsVisualizations = "Makie" | ||
AgentsRL = ["Crux", "POMDPs", "Flux"] | ||
|
||
[compat] | ||
Arrow = "2" | ||
CSV = "0.9.7, 0.10" | ||
CommonSolve = "0.2.4" | ||
Crux = "0.1" | ||
DataFrames = "0.21, 0.22, 1" | ||
DataStructures = "0.18" | ||
Distributed = "1" | ||
Distributions = "0.25" | ||
Downloads = "1" | ||
Flux = "0.14" | ||
GraphMakie = "0.5, 0.6" | ||
Graphs = "1.4" | ||
JLD2 = "0.4, 0.5" | ||
|
@@ -57,8 +63,9 @@ LightOSM = "0.2, 0.3" | |
LightSumTypes = "5" | ||
LinearAlgebra = "1" | ||
MacroTools = "0.5" | ||
Makie = "0.20, 0.21, 0.22, 0.24" | ||
Makie = "0.20, 0.21, 0.22, 0.23" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this downgrade happening? Makie should be updated to 0.24 as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @Tortar I don't remember what the issue was here with 0.24, do you ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it was that it had some compatibility issues, you could try adding that now to see if they are resolved |
||
OSMMakie = "0.0, 0.1" | ||
POMDPs = "0.9, 1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the status with this dependency? Why do we allow both, instead of only v1? |
||
PrecompileTools = "1" | ||
ProgressMeter = "1.5" | ||
Random = "1" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should remove all the figures and videos that we can generate while building the docs. What is the status with the wolf sheep model? Is this very slow to run/train? If yes, we can upload videos and pictures for it here: https://github.com/JuliaDynamics/JuliaDynamics/tree/master/videos/agents |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Latest stable release of Flux is 0.16. Why do we have 0.14 here?