app

Gradio Application Package.

This package contains the complete Gradio web application for the garbage classification system, including the main application entry point and all UI sections.

Modules

main Main application entry point with Gradio interface initialization. sections Package containing individual UI tabs (data exploration, training, evaluation).

Notes

The application can be launched by running main.py directly or by importing and calling main.main().

See Also

app.main: Application entry point
app.sections: UI sections package

 1#!/usr/bin/env python3
 2# -*- coding: utf-8 -*-
 3"""
 4Gradio Application Package.
 5
 6This package contains the complete Gradio web application for the garbage
 7classification system, including the main application entry point and all
 8UI sections.
 9
10Modules
11-------
12main
13    Main application entry point with Gradio interface initialization.
14sections
15    Package containing individual UI tabs (data exploration, training,
16    evaluation).
17
18Notes
19-----
20The application can be launched by running `main.py` directly or by
21importing and calling `main.main()`.
22
23See Also
24--------
25app.main : Application entry point
26app.sections : UI sections package
27"""
28__docformat__ = "numpy"