You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+10-7
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ Why **RLLTE**?
57
57
- ⚙️ Support custom environments and modules;
58
58
- 🖥️ Support multiple computing devices like GPU and NPU;
59
59
- 💾 Large number of reusable benchmarks ([RLLTE Hub](https://hub.rllte.dev));
60
-
-👨✈️ Large language model-empowered copilot ([RLLTE Copilot](https://github.com/RLE-Foundation/rllte-copilot)).
60
+
-🤖 Large language model-empowered copilot ([RLLTE Copilot](https://github.com/RLE-Foundation/rllte-copilot)).
61
61
62
62
> ⚠️ Since the construction of RLLTE Hub requires massive computing power, we have to upload the training datasets and model weights gradually. Progress report can be found in [Issue#30](https://github.com/RLE-Foundation/rllte/issues/30).
Developers only need three steps to implement an RL algorithm with **RLLTE**. The following example illustrates how to write an Advantage Actor-Critic (A2C) agent to solve Atari games.
138
138
- Firstly, select a prototype:
139
-
```py
140
-
from rllte.common.prototype import OnPolicyAgent
141
-
```
139
+
<details>
140
+
<summary>Click to expand code</summary>
141
+
```py
142
+
from rllte.common.prototype import OnPolicyAgent
143
+
```
144
+
</details>
142
145
- Secondly, select necessary modules to build the agent:
143
146
144
147
<details>
@@ -287,17 +290,17 @@ Explore the ecosystem of RLLTE to facilitate your project:
287
290
-[Pre-training](https://docs.rllte.dev/api/tutorials/): Methods of pre-training in RL.
288
291
-[Copilot](https://docs.rllte.dev/copilot): Large language model-empowered copilot.
Welcome to contribute to this project! Before you begin writing code, please read [CONTRIBUTING.md](https://github.com/RLE-Foundation/rllte/blob/main/CONTRIBUTING.md) for guide first.
298
301
299
302
# Cite the Project
300
-
If you use **RLLTE** in your research, please cite this project like this:
303
+
To cite this project in publications:
301
304
```bibtex
302
305
@article{yuan2023rllte,
303
306
title={RLLTE: Long-Term Evolution Project of Reinforcement Learning},
0 commit comments