iamsubrata commited on
Commit
76e0e14
1 Parent(s): d7eb649

Adjust line plot height

Browse files
Files changed (1) hide show
  1. app/bird_species.py +2 -2
app/bird_species.py CHANGED
@@ -80,7 +80,7 @@ def model_info():
80
  # Streamlit table
81
  st.table(df)
82
  # Visualize data as line plot
83
- st.line_chart(data=df, x="epoch", y=['train_loss', 'valid_loss', 'accuracy', 'error_rate'])
84
 
85
  # Model performance on Unfreezed Layers
86
  st.subheader("Model performance with Resnet50 (unfreezed layers)")
@@ -99,6 +99,6 @@ def model_info():
99
  # Streamlit table
100
  st.table(df)
101
  # Visualize data as line plot
102
- st.line_chart(data=df, x="epoch", y=['train_loss', 'valid_loss', 'accuracy', 'error_rate'])
103
 
104
  #######################################################################################################################
 
80
  # Streamlit table
81
  st.table(df)
82
  # Visualize data as line plot
83
+ st.line_chart(data=df, x="epoch", y=['train_loss', 'valid_loss', 'accuracy', 'error_rate'], height=600)
84
 
85
  # Model performance on Unfreezed Layers
86
  st.subheader("Model performance with Resnet50 (unfreezed layers)")
 
99
  # Streamlit table
100
  st.table(df)
101
  # Visualize data as line plot
102
+ st.line_chart(data=df, x="epoch", y=['train_loss', 'valid_loss', 'accuracy', 'error_rate'], height=600)
103
 
104
  #######################################################################################################################