forked from tensorforce/tensorforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
29 lines (23 loc) · 703 Bytes
/
BUILD
File metadata and controls
29 lines (23 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package(default_visibility = ["//visibility:public"])
tensorforce_args = [
"--agent VPGAgent",
"--agent-config /configs/vpg_baseline_visual.json",
"--network-config /configs/cnn_dqn_network.json",
"--episodes 1000",
"--max-timesteps 1000"
]
py_library(
name = "tensorforce",
imports = [":tensorforce"],
data = ["//tensorforce:examples/configs/vpg_baseline_visual.json",
"//tensorforce:examples/configs/cnn_dqn_network.json"],
srcs = glob(["tensorforce/**/*.py"])
)
py_binary(
name = "lab_runner",
srcs = ["examples/lab_main.py"],
args = tensorforce_args,
data = ["//:deepmind_lab.so"],
main = "examples/lab_main.py",
deps = [":tensorforce"]
)