-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
95 lines (85 loc) · 1.99 KB
/
mix.exs
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
defmodule Rein.MixProject do
use Mix.Project
@source_url "https://github.com/DockYard/rein"
@version "0.1.0"
def project do
[
app: :rein,
version: "0.1.0",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: Mix.compilers(),
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs(),
description: "Reinforcement Learning built with Nx",
preferred_cli_env: [
docs: :docs,
"hex.publish": :docs
]
]
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.
def application do
[extra_applications: [:logger, :runtime_tools]]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
# Specifies your project dependencies.
#
# Type `mix help deps` for examples and options.
defp deps do
[
{:ex_doc, "~> 0.30", only: :docs},
{:nx, "~> 0.6"},
{:axon, "~> 0.6"}
| backend()
]
end
defp backend do
case System.get_env("REIN_NX_BACKEND") do
"torchx" ->
[{:torchx, "~> 0.6"}]
"binary" ->
[]
_ ->
[{:exla, "~> 0.6"}]
end
end
defp package do
[
maintainers: ["Paulo Valente"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
main: "Rein",
source_url_pattern: "#{@source_url}/blob/v#{@version}/rein/%{path}#L%{line}",
extras: [
"guides/gridworld.livemd"
],
groups_for_functions: [],
groups_for_modules: [
Agents: [
Rein.Agents.QLearning,
Rein.Agents.DQN,
Rein.Agents.DDPG,
Rein.Agents.SAC
],
Environments: [
Rein.Environments.Gridworld
],
Utils: [
Rein.Utils.CircularBuffer,
Rein.Utils.Noise.OUProcess
]
]
]
end
end