Quickstart
Installation
Install from PyPI:
pip install sb3-soft
Or install from source:
git clone https://github.com/miki-yuasa/sb3-soft.git
cd sb3-soft
pip install -e .
Basic SQL usage
from sb3_soft import SQL
env = ...
model = SQL("MlpPolicy", env, verbose=1)
model.learn(total_timesteps=100_000)
model.save("sql_model")
Basic SDSAC usage
from sb3_soft import SDSAC
env = ...
model = SDSAC("MlpPolicy", env, verbose=1)
model.learn(total_timesteps=100_000)
model.save("sdsac_model")
Notes
Discrete action spaces are supported.
APIs follow Stable-Baselines3 conventions.