Priyanka-Kumavat-At-TE commited on
Commit
718c6e2
1 Parent(s): f5024c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -106,6 +106,7 @@ def main():
106
  # Description of MarkovChainClassifier
107
  mcclf_description = "The MarkovChainClassifier is a Machine Learning Classifier that utilizes the concept of Markov chains for prediction. Markov chains are mathematical models that represent a system where the future state of the system depends only on its current state, and not on the previous states. The MarkovChainClassifier uses this concept to make predictions by modeling the transition probabilities between different states or categories in the input data. It captures the probabilistic relationships between variables and uses them to classify new data points into one or more predefined categories. The MarkovChainClassifier can be useful in scenarios where the data has a sequential or time-dependent structure, and the relationships between variables can be modeled as Markov chains. It can be applied to various tasks, such as text classification, speech recognition, recommendation systems, and financial forecasting."
108
  # Display the description in Streamlit app
 
109
  st.write(mcclf_description)
110
 
111
  elif app_mode == "Generate User Visit History":
 
106
  # Description of MarkovChainClassifier
107
  mcclf_description = "The MarkovChainClassifier is a Machine Learning Classifier that utilizes the concept of Markov chains for prediction. Markov chains are mathematical models that represent a system where the future state of the system depends only on its current state, and not on the previous states. The MarkovChainClassifier uses this concept to make predictions by modeling the transition probabilities between different states or categories in the input data. It captures the probabilistic relationships between variables and uses them to classify new data points into one or more predefined categories. The MarkovChainClassifier can be useful in scenarios where the data has a sequential or time-dependent structure, and the relationships between variables can be modeled as Markov chains. It can be applied to various tasks, such as text classification, speech recognition, recommendation systems, and financial forecasting."
108
  # Display the description in Streamlit app
109
+ st.header("Model description:")
110
  st.write(mcclf_description)
111
 
112
  elif app_mode == "Generate User Visit History":