Skip to content
Snippets Groups Projects
Commit 15b9eb4d authored by Lucas Miranda's avatar Lucas Miranda
Browse files

Added header docstrings to all modules

parent e9a057e5
No related branches found
No related tags found
No related merge requests found
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
keras hypermodels for hyperparameter tuning of deep autoencoders
"""
from kerastuner import HyperModel from kerastuner import HyperModel
from tensorflow.keras import backend as K from tensorflow.keras import backend as K
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
deep autoencoder models for unsupervised pose detection
"""
from tensorflow.keras import backend as K from tensorflow.keras import backend as K
from tensorflow.keras import Input, Model, Sequential from tensorflow.keras import Input, Model, Sequential
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
General plotting functions for the deepof package
"""
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
import numpy as np import numpy as np
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
Testing module for deepof.model_utils
"""
from hypothesis import given from hypothesis import given
from hypothesis import settings from hypothesis import settings
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
Testing module for deepof.preprocess
"""
from hypothesis import given from hypothesis import given
from hypothesis import settings from hypothesis import settings
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
Testing module for deepof.utils
"""
from hypothesis import given from hypothesis import given
from hypothesis import HealthCheck from hypothesis import HealthCheck
......
# @author lucasmiranda42 # @author lucasmiranda42
# encoding: utf-8
# module deepof
"""
Testing module for deepof.visuals
"""
from hypothesis import given from hypothesis import given
from hypothesis import settings from hypothesis import settings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment