kengz/SLM-Lab

View on GitHub
slm_lab/agent/net/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# The nets module
# Implements differents types of neural network
from slm_lab.agent.net.conv import *
from slm_lab.agent.net.mlp import *
from slm_lab.agent.net.recurrent import *
from slm_lab.agent.net.q_net import *