File size: 753 Bytes
40fa5b9
f128fe5
40fa5b9
 
 
 
 
 
 
f128fe5
 
40fa5b9
ba1c7a0
 
 
 
ca764d6
 
f18a5e1
ca764d6
6efe11e
 
 
 
f18a5e1
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import streamlit as st
from menu import menu_with_redirect

# Path manipulation
from pathlib import Path

# Custom and other imports
import project_config

# Redirect to app.py if not logged in, otherwise show the navigation menu
menu_with_redirect()

# Header
st.image(str(project_config.MEDIA_DIR / 'validate_header.svg'), use_column_width=True)

# Main content
# st.markdown(f"Hello, {st.session_state.name}!")

st.subheader("Validate Predictions", divider = "green")

# Print current query
st.markdown(f"**Query:** {st.session_state.query['source_node'].replace('_', ' ')} ➡️ {st.session_state.query['relation'].replace('_', '-')} ➡️ {st.session_state.query['target_node_type'].replace('_', ' ')}")


# Coming soon
st.write("Coming soon...")