snehilsanyal commited on
Commit
a2af77f
·
1 Parent(s): 679c425

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -60,14 +60,23 @@ with gr.Blocks(title = heading, theme= 'snehilsanyal/scikit-learn') as demo:
60
  gr.Markdown("# {}".format(heading))
61
  gr.Markdown(
62
  """
63
- ### This demo visualizes different SVM Classifiers on a 2D projection
64
- of the Iris dataset. The features to be considered are:
 
 
 
65
  <b>1. Sepal length </b>
 
66
  <b>2. Sepal width </b>
 
67
  The SVM Classifiers used for this demo are:
 
68
  <b>1. SVC with linear kernel </b>
 
69
  <b>2. Linear SVC </b>
 
70
  <b>3. SVC with RBF kernel</b>
 
71
  <b>4. SVC with Polynomial (degree 3) kernel</b>
72
  """
73
  )
 
60
  gr.Markdown("# {}".format(heading))
61
  gr.Markdown(
62
  """
63
+ ### This demo visualizes different SVM Classifiers on a 2D projection\
64
+ of the Iris dataset.
65
+
66
+ The features to be considered are:
67
+
68
  <b>1. Sepal length </b>
69
+
70
  <b>2. Sepal width </b>
71
+
72
  The SVM Classifiers used for this demo are:
73
+
74
  <b>1. SVC with linear kernel </b>
75
+
76
  <b>2. Linear SVC </b>
77
+
78
  <b>3. SVC with RBF kernel</b>
79
+
80
  <b>4. SVC with Polynomial (degree 3) kernel</b>
81
  """
82
  )