standardize module docstring

This commit is contained in:
giovanni
2025-03-14 16:32:19 +01:00
committed by FilippoOlivo
parent 8cfee0d1bc
commit 8dfc9d19db
60 changed files with 61 additions and 122 deletions

View File

@@ -1,6 +1,4 @@
"""
Adaptive Activation Functions Module.
"""
"""Adaptive Activation Functions Module."""
__all__ = [
"AdaptiveActivationFunctionInterface",

View File

@@ -1,4 +1,4 @@
"""Module for adaptive functions."""
"""Module for the Adaptive Functions."""
import torch
from ..utils import check_consistency

View File

@@ -1,4 +1,4 @@
"""Module for adaptive functions."""
"""Module for the Adaptive Function interface."""
from abc import ABCMeta
import torch