Jensen-holm commited on
Commit
902aba3
·
1 Parent(s): 1936952

working on making readme better

Browse files
Files changed (2) hide show
  1. README.md +16 -1
  2. opts.py +2 -0
README.md CHANGED
@@ -1,6 +1,10 @@
1
  # Data Mining from scratch backend
2
 
3
- Currently living [here](https://data-mining-from-scratch-backend.onrender.com/)
 
 
 
 
4
 
5
  ### Example Useage
6
 
@@ -31,3 +35,14 @@ r = requests.post(
31
  model_data = r.json()
32
  print(model_data)
33
  ```
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Data Mining from scratch backend
2
 
3
+ Currently living [here](https://data-mining-from-scratch-backend.onrender.com/) <br>
4
+ Since the API is hosted using render's free tier, <br>
5
+ every time 15 minutes goes by it gets shut down. <br>
6
+ If a request is made while it is shut down, the web service <br>
7
+ has to spin back up again which takes roughly 1 minute <br>
8
 
9
  ### Example Useage
10
 
 
35
  model_data = r.json()
36
  print(model_data)
37
  ```
38
+
39
+ ### Parameter Options
40
+
41
+ \*\*Algorithm: <br>
42
+
43
+ - `"neural-network"` <br>
44
+ - `"kmeans-clustering"` <br>
45
+ - `"kmedoid-clustering"` <br>
46
+ - `"heirarchical-clustering"` <br>
47
+
48
+ \*\*Algorithm Specific Parameters
opts.py CHANGED
@@ -5,4 +5,6 @@ options = {
5
  "neural-network": nn,
6
  "kmeans-clustering": clust,
7
  "kmedoid-clustering": clust,
 
 
8
  }
 
5
  "neural-network": nn,
6
  "kmeans-clustering": clust,
7
  "kmedoid-clustering": clust,
8
+ "heirarchical-clustering": clust,
9
+ "dbscan-clustering": clust,
10
  }