debut separation front/back

This commit is contained in:
hugo.pradier2
2024-06-21 17:19:38 +02:00
parent 4d82767c68
commit 15e1674cb2
4 changed files with 5 additions and 2 deletions

0
backend/__init__.py Normal file
View File

0
frontend/__init__.py Normal file
View File

View File

@@ -1,4 +1,7 @@
import streamlit as st
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../../backend')))
from normstrategy import MVStrategy, ScalingStrategy, KNNStrategy
if "data" in st.session_state: