rr19tech commited on
Commit
44624d5
·
verified ·
1 Parent(s): 6ddde28

Update index.html

Browse files
Files changed (1) hide show
  1. 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
- <div class="card">
11
- <h1>Welcome to rr19tech Alarm Filtering Model!</h1>
12
- <p>Onnx model developed to showcase an alarm filtering model.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
 
 
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>