Skip to content

fl_server_ai.apps

Classes:

Name Description
FlServerAiConfig

Django AppConfig for the Federated Learning Demonstrator AI module.

Classes

FlServerAiConfig

Bases: AppConfig


              flowchart TD
              fl_server_ai.apps.FlServerAiConfig[FlServerAiConfig]

              

              click fl_server_ai.apps.FlServerAiConfig href "" "fl_server_ai.apps.FlServerAiConfig"
            

Django AppConfig for the Federated Learning Demonstrator AI 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_ai/apps.py
class FlServerAiConfig(AppConfig):
    """
    Django AppConfig for the Federated Learning Demonstrator AI module.
    """

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

Attributes

name class-attribute instance-attribute
name = 'fl_server_ai'

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

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

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