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

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:
@@ -32,4 +35,4 @@ if "data" in st.session_state:
st.write(data)
st.session_state.data = data
else:
st.error("file not loaded")
st.error("file not loaded")