Datasets:

ArXiv:
License:

Add dataset card with paper link, task category, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +51 -3
README.md CHANGED
@@ -1,3 +1,51 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - reinforcement-learning
5
+ ---
6
+
7
+ # FluidGym Experiments
8
+
9
+ [Paper](https://huggingface.co/papers/2601.15015) | [GitHub](https://github.com/safe-autonomous-systems/fluidgym) | [Documentation](https://safe-autonomous-systems.github.io/fluidgym)
10
+
11
+ FluidGym is a standalone, fully differentiable benchmark suite for reinforcement learning (RL) in active flow control (AFC). Built entirely in PyTorch on top of the GPU-accelerated PICT solver, it provides standardized evaluation protocols and diverse environments for systematic comparison of control methods.
12
+
13
+ This repository contains the training and test datasets with results for all experimental runs presented in the paper.
14
+
15
+ ## Sample Usage
16
+
17
+ FluidGym provides a `gymnasium`-like interface that can be used as follows:
18
+
19
+ ```python
20
+ import fluidgym
21
+
22
+ env = fluidgym.make(
23
+ "JetCylinder2D-easy-v0",
24
+ )
25
+ obs, info = env.reset(seed=42)
26
+
27
+ for _ in range(50):
28
+ action = env.sample_action()
29
+ obs, reward, term, trunc, info = env.step(action)
30
+ env.render()
31
+
32
+ if term or Bird:
33
+ break
34
+ ```
35
+
36
+ ## Citation
37
+
38
+ If you use FluidGym in your work, please cite:
39
+
40
+ ```bibtex
41
+ @misc{becktepe-fluidgym26,
42
+ title={Plug-and-Play Benchmarking of Reinforcement Learning Algorithms for Large-Scale Flow Control},
43
+ author={Jannis Becktepe and Aleksandra Franz and Nils Thuerey and Sebastian Peitz},
44
+ year={2026},
45
+ eprint={2601.15015},
46
+ archivePrefix={arXiv},
47
+ primaryClass={cs.LG},
48
+ url={https://arxiv.org/abs/2601.15015},
49
+ note={GitHub: https://github.com/safe-autonomous-systems/fluidgym},
50
+ }
51
+ ```