NetShield / app.py
DeepActionPotential's picture
🚀 Initial upload of my app
d06d82c verified
raw
history blame contribute delete
242 Bytes
from utils import load_artifacts, predict_intrusion
from ui import build_ui
if __name__ == "__main__":
pipeline, target_encoder = load_artifacts()
demo = build_ui(pipeline, target_encoder, predict_intrusion)
demo.launch()