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

Update app.py

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