Spaces:
Running
Running
Zekun Wu
commited on
Commit
β’
0ba415f
1
Parent(s):
c4190b1
update
Browse files
pages/1_Injection_Single.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
-
from util.
|
5 |
from util.model import AzureAgent, GPTAgent
|
6 |
|
7 |
# Set up the Streamlit interface
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
+
from util.injection import process_scores_single
|
5 |
from util.model import AzureAgent, GPTAgent
|
6 |
|
7 |
# Set up the Streamlit interface
|
pages/2_Evaluation_Single.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
-
from util.
|
5 |
|
6 |
def app():
|
7 |
st.title('Result Evaluation')
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
+
from util.evaluation import statistical_tests, result_evaluation
|
5 |
|
6 |
def app():
|
7 |
st.title('Result Evaluation')
|
pages/3_Injection_Multiple.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
-
from util.
|
5 |
from util.model import AzureAgent, GPTAgent
|
6 |
|
7 |
# Set up the Streamlit interface
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
+
from util.injection import process_scores_multiple
|
5 |
from util.model import AzureAgent, GPTAgent
|
6 |
|
7 |
# Set up the Streamlit interface
|
pages/4_Evaluation_Multiple.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
-
from util.
|
5 |
|
6 |
def app():
|
7 |
st.title('Result Evaluation')
|
|
|
1 |
import streamlit as st
|
2 |
import pandas as pd
|
3 |
from io import StringIO
|
4 |
+
from util.evaluation import statistical_tests, result_evaluation
|
5 |
|
6 |
def app():
|
7 |
st.title('Result Evaluation')
|
util/{analysis.py β evaluation.py}
RENAMED
File without changes
|
util/{generation.py β injection.py}
RENAMED
File without changes
|