Spaces:
Runtime error
Runtime error
Commit
·
225c99f
1
Parent(s):
c4ab8eb
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,7 @@ with demo:
|
|
15 |
|
16 |
gr.Markdown("# **Binary Classification using Gated Residual and Variable Selection Networks** \n")
|
17 |
gr.Markdown("This space demonstrates the use of Gated Residual Networks (GRN) and Variable Selection Networks (VSN), proposed by Bryan Lim et al. in <a href=\"https://arxiv.org/abs/1912.09363/\">Temporal Fusion Transformers (TFT) for Interpretable Multi-horizon Time Series Forecasting</a> for structured data classification")
|
|
|
18 |
gr.Markdown("Play around and see yourself 🤗 ")
|
19 |
|
20 |
with gr.Tabs():
|
@@ -54,7 +55,7 @@ with demo:
|
|
54 |
|
55 |
predict_button.click(user_input_predict, inputs=inputs_list, outputs=final_output)
|
56 |
compute_button.click(batch_predict, inputs=input_df, outputs=output_df)
|
57 |
-
gr.Markdown('\n
|
58 |
|
59 |
|
60 |
demo.launch()
|
|
|
15 |
|
16 |
gr.Markdown("# **Binary Classification using Gated Residual and Variable Selection Networks** \n")
|
17 |
gr.Markdown("This space demonstrates the use of Gated Residual Networks (GRN) and Variable Selection Networks (VSN), proposed by Bryan Lim et al. in <a href=\"https://arxiv.org/abs/1912.09363/\">Temporal Fusion Transformers (TFT) for Interpretable Multi-horizon Time Series Forecasting</a> for structured data classification")
|
18 |
+
gr.Markdown("The model used by this space was trained on the [United States Census Income Dataset](https://archive.ics.uci.edu/ml/datasets/Census-Income+%28KDD%29) dataset and helps to predict if the income of a person will be >$500K or not.")
|
19 |
gr.Markdown("Play around and see yourself 🤗 ")
|
20 |
|
21 |
with gr.Tabs():
|
|
|
55 |
|
56 |
predict_button.click(user_input_predict, inputs=inputs_list, outputs=final_output)
|
57 |
compute_button.click(batch_predict, inputs=input_df, outputs=output_df)
|
58 |
+
gr.Markdown('\n Demo created by: <a href=\"https://www.linkedin.com/in/shivalika-singh/\">Shivalika Singh</a> <br> Based on this <a href=\"https://keras.io/examples/structured_data/classification_with_grn_and_vsn/\">Keras example</a> by <a href=\"https://www.linkedin.com/in/khalid-salama-24403144/\">Khalid Salama</a> <br> Demo Powered by this <a href=\"https://huggingface.co/keras-io/structured-data-classification-grn-vsn/\">GRN-VSN model</a>')
|
59 |
|
60 |
|
61 |
demo.launch()
|