Spaces:
Sleeping
Sleeping
Update appStore/target.py
Browse files- appStore/target.py +8 -0
appStore/target.py
CHANGED
@@ -37,6 +37,14 @@ def app():
|
|
37 |
threshold= params['threshold'])
|
38 |
st.session_state.key1 = df
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
# # Declare all the necessary variables
|
41 |
# classifier_identifier = 'target'
|
42 |
# params = get_classifier_params(classifier_identifier)
|
|
|
37 |
threshold= params['threshold'])
|
38 |
st.session_state.key1 = df
|
39 |
|
40 |
+
|
41 |
+
def target_display():
|
42 |
+
|
43 |
+
# Assign dataframe a name
|
44 |
+
df = st.session_state['key1']
|
45 |
+
|
46 |
+
st.write(df)
|
47 |
+
|
48 |
# # Declare all the necessary variables
|
49 |
# classifier_identifier = 'target'
|
50 |
# params = get_classifier_params(classifier_identifier)
|