Spaces:
Sleeping
Sleeping
Commit
·
e56bb0b
1
Parent(s):
f31d9cf
readme
Browse files- README.md +2 -3
- cluster/main.py +0 -1
README.md
CHANGED
@@ -13,7 +13,6 @@ import requests
|
|
13 |
import json
|
14 |
|
15 |
request_params = {
|
16 |
-
"algorithm": "neural-network",
|
17 |
"arguments": {
|
18 |
"epochs": 100,
|
19 |
"activation_func": "tanh",
|
@@ -27,7 +26,7 @@ headers = {
|
|
27 |
}
|
28 |
|
29 |
r = requests.post(
|
30 |
-
"https://data-mining-from-scratch-backend.onrender.com/",
|
31 |
headers=headers,
|
32 |
data=json.dumps(request_params),
|
33 |
)
|
@@ -38,7 +37,7 @@ print(model_data)
|
|
38 |
|
39 |
### Parameter Options
|
40 |
|
41 |
-
-
|
42 |
|
43 |
-`"neural-network"` <br>
|
44 |
|
|
|
13 |
import json
|
14 |
|
15 |
request_params = {
|
|
|
16 |
"arguments": {
|
17 |
"epochs": 100,
|
18 |
"activation_func": "tanh",
|
|
|
26 |
}
|
27 |
|
28 |
r = requests.post(
|
29 |
+
"https://data-mining-from-scratch-backend.onrender.com/neural-network",
|
30 |
headers=headers,
|
31 |
data=json.dumps(request_params),
|
32 |
)
|
|
|
37 |
|
38 |
### Parameter Options
|
39 |
|
40 |
+
- End Points: <br>
|
41 |
|
42 |
-`"neural-network"` <br>
|
43 |
|
cluster/main.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import numpy as np
|
2 |
|
3 |
from cluster.clusterer import Clusterer
|
4 |
-
# for determing which clustering funciton to call
|
5 |
from cluster.opts import clustering_methods
|
6 |
from cluster.plot import plot
|
7 |
|
|
|
1 |
import numpy as np
|
2 |
|
3 |
from cluster.clusterer import Clusterer
|
|
|
4 |
from cluster.opts import clustering_methods
|
5 |
from cluster.plot import plot
|
6 |
|