sketch_nn / sketch_ nn /__init__.py
Aman Sharma
gradio demo added
8462fc9
raw
history blame
458 Bytes
# Import the main class from the designer module
from .designer import NeuralNetworkDesigner
# Import any utility functions you want to make directly accessible
from .utils import save_uploaded_file # assuming you have this function in utils.py
# You can also define the version of your package here
__version__ = "0.1.0"
# If you want to control what gets imported with "from sketch_nn import *"
__all__ = ['NeuralNetworkDesigner', 'save_uploaded_file']