RL4AA23

1st collaboration workshop on Reinforcement Learning for Autonomous Accelerators (RL4AA’23)

This repository contains the material for the second day of the RL4AA’23 event.

Homepage for RL4AA Collaboration: https://rl4aa.github.io/

Workshop organizing committee

Slides

Python tutorial: reinforcement learning implementation example

Getting started

Install ffmpeg

Setup the environment locally

venv

python3 -m venv rl4aa
source rl4aa/bin/activate
pip3 install -r requirements.txt
jupyter notebook

conda only

Instructions to install conda here

conda env create -f environment.yml
conda activate rl4aa
jupyter notebook

conda + pip

cd path_to_your_folder/RL4AA23
conda create -n rl4aa python=3.10
conda activate rl4aa
pip3 install -r requirements.txt
jupyter notebook