snehilsanyal commited on
Commit
4b33f7a
·
1 Parent(s): f1caf9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -65,20 +65,20 @@ with gr.Blocks(title = heading, theme= 'snehilsanyal/scikit-learn') as demo:
65
  The features to be considered are:\
66
  \
67
 
68
- <b>1. Sepal length (cm) </b>\
69
 
70
- <b>2. Sepal width (cm) </b>\
71
 
72
  The SVM Classifiers used for this demo are:\
73
  \
74
 
75
- <b>1. SVC with linear kernel </b>\
76
 
77
- <b>2. Linear SVC </b>\
78
 
79
- <b>3. SVC with RBF kernel</b>\
80
 
81
- <b>4. SVC with Polynomial (degree 3) kernel</b>
82
  """
83
  )
84
  gr.Markdown('**[Demo is based on this script from scikit-learn documentation](https://scikit-learn.org/stable/auto_examples/svm/plot_iris_svc.html#sphx-glr-auto-examples-svm-plot-iris-svc-py)**')
 
65
  The features to be considered are:\
66
  \
67
 
68
+ 1. Sepal length (cm) \
69
 
70
+ 2. Sepal width (cm) \
71
 
72
  The SVM Classifiers used for this demo are:\
73
  \
74
 
75
+ 1. SVC with linear kernel \
76
 
77
+ 2. Linear SVC \
78
 
79
+ 3. SVC with RBF kernel\
80
 
81
+ 4. SVC with Polynomial (degree 3) kernel
82
  """
83
  )
84
  gr.Markdown('**[Demo is based on this script from scikit-learn documentation](https://scikit-learn.org/stable/auto_examples/svm/plot_iris_svc.html#sphx-glr-auto-examples-svm-plot-iris-svc-py)**')