Hellisotherpeople commited on
Commit
8242fa0
β€’
1 Parent(s): bab859e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,9 +62,9 @@ cv_max_features = form.number_input("Enter the maximum number of n-grams to be f
62
 
63
 
64
  form.header("HDBScan Settings")
65
- hdbscan_min_cluster_size = form.number_input("Enter the number of points necessary to form a new cluster", value = 5)
66
  form.caption("Set it to the smallest size grouping that you wish to consider a cluster. This is the most impactful setting for HDBscan")
67
- hdbscan_min_samples = form.number_input("Enter the minimum number of points to be declared a cluster instead of noise", value = 3)
68
  form.caption("The larger the value of min_samples you provide, the more conservative the clustering – more points will be declared as noise, and clusters will be restricted to progressively more dense areas.")
69
  hdbscan_metric = form.text_area("Enter the name of the metric used for computing distances for HDBscan. Common metrics for NLP are euclidean and cosine. Cosine is not supported by HDBscan", value = "euclidean")
70
 
 
62
 
63
 
64
  form.header("HDBScan Settings")
65
+ hdbscan_min_cluster_size = form.number_input("Enter the number of points necessary to form a new cluster", value = 3)
66
  form.caption("Set it to the smallest size grouping that you wish to consider a cluster. This is the most impactful setting for HDBscan")
67
+ hdbscan_min_samples = form.number_input("Enter the minimum number of points to be declared a cluster instead of noise", value = 2)
68
  form.caption("The larger the value of min_samples you provide, the more conservative the clustering – more points will be declared as noise, and clusters will be restricted to progressively more dense areas.")
69
  hdbscan_metric = form.text_area("Enter the name of the metric used for computing distances for HDBscan. Common metrics for NLP are euclidean and cosine. Cosine is not supported by HDBscan", value = "euclidean")
70