ignis
is a high-level library that helps you write compact but full-featured training loops with metrics, early stops,
and model checkpoints for deep learning library PyTorch.
With ignis
you can solve Supervised Learning and Deep Reinforcement Learning problems.
You can extend ignis
according to your own needs. You can implement custom functionalities by extending simple
abstract classes.
- Deep Q Network (DQN)
- Deep Deterministic Policy Gradients (DDPG)
- Install PyTorch. You can find it here: PyTorch
pip install ignis
You can find examples in examples/
directory
You can also run examples: python examples/iris.py
You might want to export PYTHONPATH=/path/to/this/directory
- Implement new functionalities
- Improve code design
- Improve comments and readme
- Tests