File tree
13 files changed
+90
-46
lines changed- Plugins
- Source
- python/tests
- Maps/Examples
13 files changed
+90
-46
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
37 | | - | |
| 36 | + | |
| 37 | + | |
- .gitignore+2-1
- CITATION.cff+3-3
- Docs/Sphinx/_static/guides/bc/action_functions.png
- Docs/Sphinx/_static/guides/bc/ballshooter_top.png
- Docs/Sphinx/_static/guides/bc/details.png
- Docs/Sphinx/_static/guides/bc/distribution.png
- Docs/Sphinx/_static/guides/bc/eplen.png
- Docs/Sphinx/_static/guides/bc/event.png
- Docs/Sphinx/_static/guides/bc/override.png
- Docs/Sphinx/_static/guides/bc/player_controller_bp.png
- Docs/Sphinx/_static/guides/bc/reward.png
- Docs/Sphinx/_static/guides/bc/trajectory_recorder_bp.png
- Docs/Sphinx/blueprints/bc/do_discrete_action.bp+39
- Docs/Sphinx/blueprints/bc/event_graph.bp+90
- Docs/Sphinx/guides/behaviour_cloning.rst+72
- Docs/Sphinx/guides/guides_toc.rst+1
- LICENSE.txt+1-1
- README.md+22-4
- Resources/python/schola/core/env.py+136-90
- Resources/python/schola/core/error_manager.py+19-14
- Resources/python/schola/core/model.py+22
- Resources/python/schola/core/spaces/base.py+17-15
- Resources/python/schola/core/spaces/binary.py+10-9
- Resources/python/schola/core/spaces/box.py+25-18
- Resources/python/schola/core/spaces/dict.py+21-22
- Resources/python/schola/core/spaces/discrete.py+35-23
- Resources/python/schola/core/unreal_connections/__init__.py+8
- Resources/python/schola/core/unreal_connections/base_connection.py+131
- Resources/python/schola/core/unreal_connections/editor_connection.py+31
- Resources/python/schola/core/unreal_connections/standalone_connection.py+156
- Resources/python/schola/core/utils/__init__.py+5
- Resources/python/schola/core/utils/id_manager.py+242
- Resources/python/schola/core/utils/plugins.py+29
- Resources/python/schola/core/utils/ubt.py+237
- Resources/python/schola/gym/env.py+119-63
- Resources/python/schola/gym/utils.py+9-5
- Resources/python/schola/imitation/__init__.py+4
- Resources/python/schola/imitation/ray/__init__.py+4
- Resources/python/schola/imitation/ray/convert_trajectories.py+68
- Resources/python/schola/imitation/ray/launch_imitation.py+216
- Resources/python/schola/imitation/sb3/__init__.py+4
- Resources/python/schola/imitation/sb3/launch_imitation.py+261
- Resources/python/schola/imitation/sb3/trajectory_utils.py+141
- Resources/python/schola/ray/env.py+10-10
- Resources/python/schola/ray/utils.py+30-24
- Resources/python/schola/sb3/action_space_patch.py+186-85
- Resources/python/schola/sb3/env.py+58-46
- Resources/python/schola/sb3/utils.py+108-60
- Resources/python/schola/scripts/common.py+154-47
- Resources/python/schola/scripts/ray/launch.py+68-39
- Resources/python/schola/scripts/ray/rllib_to_onnx.py+2
- Resources/python/schola/scripts/ray/settings.py+324-91
- Resources/python/schola/scripts/sb3/launch.py+330-89
- Resources/python/schola/scripts/sb3/sb3_to_onnx.py+7-2
- Resources/python/schola/scripts/sb3/settings.py+181-64
- Resources/python/schola/scripts/sb3/utils.py+69-53
- Resources/python/schola/scripts/utils/compile_proto.py+103-60
- Resources/python/setup.py+37-22
- Schola.uplugin+1-1
- Source/Schola/Private/Common/InteractionManager.cpp+18-6
- Source/Schola/Private/Common/TrajectoryRecorder.cpp+114
- Source/Schola/Public/Common/InteractionManager.h+9-3
- Source/Schola/Public/Common/Points/BinaryPoint.h+18-8
- Source/Schola/Public/Common/Points/BoxPoint.h+23-8
- Source/Schola/Public/Common/Points/DiscretePoint.h+24-12
- Source/Schola/Public/Common/Points/Point.h+14-8
- Source/Schola/Public/Common/Points/PointVisitor.h-2
- Source/Schola/Public/Common/TrajectoryData.h+87
- Source/Schola/Public/Common/TrajectoryRecorder.h+62
- Source/Schola/Public/Environment/EnvironmentComponents/StatLoggerComponent.h+1-1
- Source/Schola/Public/Inference/IInferenceAgent.h+4-4
- Source/Schola/Public/Inference/InferencePlayerController.h+308
- Source/Schola/Schola.Build.cs+1-1
- Test/test_build.py+35-15
- Test/test_core.py+12-6
- Test/test_rllib.py+3-4
- Test/test_sb3.py+74-45
- Test/test_ubt.py+92
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
10 | 20 | | |
11 | 21 | | |
12 | 22 | | |
| |||
21 | 31 | | |
22 | 32 | | |
23 | 33 | | |
24 | | - | |
| 34 | + | |
25 | 35 | | |
26 | 36 | | |
27 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
41 | 45 | | |
42 | 46 | | |
43 | | - | |
| 47 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
13 | 22 | | |
14 | 23 | | |
15 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
16 | 24 | | |
17 | 25 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | | - | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
| |||
78 | 79 | | |
79 | 80 | | |
80 | 81 | | |
81 | | - | |
| 82 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| |||
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
46 | | - | |
| 47 | + | |
47 | 48 | | |
48 | 49 | | |
49 | 50 | | |
| |||
0 commit comments