Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ def createPlotAndPlotPoint(x_new=9, y_new=9):
|
|
66 |
with gr.Blocks() as demo:
|
67 |
link = "https://scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html#sphx-glr-auto-examples-svm-plot-oneclass-py"
|
68 |
gr.Markdown("# Novelty detection using One-class SVM")
|
69 |
-
gr.Markdown(f"
|
70 |
gr.Markdown("In this demo, we use One-class SVM (Support Vector Machine) to learn the decision function for novelty detection.")
|
71 |
gr.Markdown("Furthermore, we **test** the algorithm on new data that would be classified as similar or different to the training set.")
|
72 |
|
|
|
66 |
with gr.Blocks() as demo:
|
67 |
link = "https://scikit-learn.org/stable/auto_examples/svm/plot_oneclass.html#sphx-glr-auto-examples-svm-plot-oneclass-py"
|
68 |
gr.Markdown("# Novelty detection using One-class SVM")
|
69 |
+
gr.Markdown(f"This demo is based on this [scikit-learn example]({link}).")
|
70 |
gr.Markdown("In this demo, we use One-class SVM (Support Vector Machine) to learn the decision function for novelty detection.")
|
71 |
gr.Markdown("Furthermore, we **test** the algorithm on new data that would be classified as similar or different to the training set.")
|
72 |
|