mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-05-16 21:10:08 +00:00
* Add auto formatting with black and isort * Reformat code * Ignore typing errors * Add note about line length * Add minimum version for isort * Add commit-checks * Update docker image * Fixed lost import (during last merge) * Fix opencv dependency
13 lines
429 B
Python
13 lines
429 B
Python
import os
|
|
|
|
from stable_baselines3.a2c import A2C
|
|
from stable_baselines3.ddpg import DDPG
|
|
from stable_baselines3.dqn import DQN
|
|
from stable_baselines3.ppo import PPO
|
|
from stable_baselines3.sac import SAC
|
|
from stable_baselines3.td3 import TD3
|
|
|
|
# Read version from file
|
|
version_file = os.path.join(os.path.dirname(__file__), "version.txt")
|
|
with open(version_file, "r") as file_handler:
|
|
__version__ = file_handler.read().strip()
|