Skip to content

fl_server_core.apps

Classes:

Name Description
FlServerCoreConfig

Django AppConfig for the Federated Learning Demonstrator Core module.

Classes

FlServerCoreConfig

Bases: AppConfig


              flowchart TD
              fl_server_core.apps.FlServerCoreConfig[FlServerCoreConfig]

              

              click fl_server_core.apps.FlServerCoreConfig href "" "fl_server_core.apps.FlServerCoreConfig"
            

Django AppConfig for the Federated Learning Demonstrator Core module.

Attributes:

Name Type Description
name

The name of the application. This is used in Django's internals.

verbose_name

A human-readable name for the application. This is used in Django's admin interface.

Source code in fl_server_core/apps.py
class FlServerCoreConfig(AppConfig):
    """
    Django AppConfig for the Federated Learning Demonstrator Core module.
    """

    name = "fl_server_core"
    """The name of the application. This is used in Django's internals."""
    verbose_name = "Federated Learning Demonstrator"
    """A human-readable name for the application. This is used in Django's admin interface."""

Attributes

name class-attribute instance-attribute
name = 'fl_server_core'

The name of the application. This is used in Django's internals.

verbose_name class-attribute instance-attribute
verbose_name = 'Federated Learning Demonstrator'

A human-readable name for the application. This is used in Django's admin interface.