Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,17 @@
|
|
1 |
import streamlit as st
|
2 |
from graphviz import Digraph
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
st.markdown("""
|
5 |
# Health Related Examples:
|
6 |
1. Health Conditions By State: https://huggingface.co/spaces/awacke1/HealthConditionsTest
|
|
|
1 |
import streamlit as st
|
2 |
from graphviz import Digraph
|
3 |
|
4 |
+
st.markdown("""
|
5 |
+
#Top Five ML Libraries:
|
6 |
+
1. PyTorch: PyTorch is another popular open-source machine learning library that is widely used for building deep learning models. It is known for its ease of use and flexibility.
|
7 |
+
2. TensorFlow: Developed by Google, TensorFlow is an open-source library that is widely used for building and training deep learning models.
|
8 |
+
3. Scikit-learn: Scikit-learn is a popular Python library for machine learning. It provides a wide range of algorithms for classification, regression, clustering, and dimensionality reduction, along with tools for model selection and evaluation.
|
9 |
+
4. Keras: Keras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano. It is designed to be easy to use and supports both convolutional and recurrent neural networks.
|
10 |
+
5. MXNet: MXNet is a deep learning framework that is known for its speed and scalability. It supports multiple programming languages and is used by several large companies for machine learning tasks.
|
11 |
+
|
12 |
+
|
13 |
+
""")
|
14 |
+
|
15 |
st.markdown("""
|
16 |
# Health Related Examples:
|
17 |
1. Health Conditions By State: https://huggingface.co/spaces/awacke1/HealthConditionsTest
|