Spaces:
Running
Running
Update index.html
Browse files- index.html +11 -7
index.html
CHANGED
|
@@ -5,15 +5,19 @@
|
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
<title>My static Space</title>
|
| 7 |
<link rel="stylesheet" href="style.css" />
|
|
|
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
</
|
|
|
|
|
|
|
| 17 |
</div>
|
| 18 |
</body>
|
| 19 |
</html>
|
|
|
|
| 5 |
<meta name="viewport" content="width=device-width" />
|
| 6 |
<title>My static Space</title>
|
| 7 |
<link rel="stylesheet" href="style.css" />
|
| 8 |
+
<!-- Get the ort from the cdn -->
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/onnxruntime-web/dist/ort.min.js"> </script>
|
| 10 |
</head>
|
| 11 |
<body>
|
| 12 |
+
<script>
|
| 13 |
+
async function runInference() {
|
| 14 |
+
|
| 15 |
+
}
|
| 16 |
+
</script>
|
| 17 |
+
<div >
|
| 18 |
+
<h1>Welcome to rr19tech Alarm Threshold Model!</h1>
|
| 19 |
+
<textarea id="showData" rows=10 cols=10></textarea>
|
| 20 |
+
<input type="button" value="ShowModel" onclick="document.getElementById('showData').text='hello';" />
|
| 21 |
</div>
|
| 22 |
</body>
|
| 23 |
</html>
|