awacke1 commited on
Commit
00c87b7
·
1 Parent(s): 14128f1

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +74 -8
index.html CHANGED
@@ -5,15 +5,81 @@
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 your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</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
+ <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
9
+ <script>mermaid.initialize({startOnLoad:true});</script>
10
  </head>
11
  <body>
12
+
13
+ Links:
14
+ https://huggingface.co/spaces/awacke1/HEDIS.Roster.Dash.Component.Service
15
+ https://huggingface.co/spaces/awacke1/HEDIS.Roster.Dash.Component.SDOH
16
+ https://huggingface.co/spaces/awacke1/HEDIS.Dash.Component.Top.Clinical.Terminology.Vocabulary
17
+
18
+ Iframes to Space Components:
19
+
20
+
21
+ <iframe
22
+ src="https://awacke1-hedis-roster-dash-component-serv-18d25b7.hf.space"
23
+ frameborder="0"
24
+ width="850"
25
+ height="450"
26
+ ></iframe>
27
+ <iframe
28
+ src="https://awacke1-hedis-roster-dash-component-sdoh.hf.space"
29
+ frameborder="0"
30
+ width="850"
31
+ height="450"
32
+ ></iframe>
33
+ <iframe
34
+ src="https://awacke1-hedis-dash-component-top-clinica-6a4a58c.hf.space"
35
+ frameborder="0"
36
+ width="850"
37
+ height="450"
38
+ ></iframe>
39
+
40
+
41
+ <div class="mermaid">
42
+ journey
43
+ title Create AI
44
+ section Training
45
+ Format DataSet Inputs Files, Data Splits: 5: Teacher
46
+ Model Build w/ SKLearn, TF, Pytorch: 3: Student
47
+ Determine Model Performance: 1: Teacher, Student
48
+ section Deploy
49
+ Web Deploy Local and Cloud: 5: Teacher
50
+ Architecture Spaces Gradio Streamlit Heroku AWS Azure and GCCP: 5: Teacher
51
+ section Testing
52
+ Test Model with Input Datasets: 5: Teacher
53
+ Examples. Inputs that Work, Inputs That Break Model: 5: Teacher
54
+ Governance - Analyze, Publish Fairness, Equity, Bias for Datasets and Outputs: 5: Teacher
55
+ </div>
56
+
57
+ <div class="mermaid">
58
+ sequenceDiagram
59
+ participant Alice
60
+ participant Bob
61
+ Alice->>John: Hello John, how are you?
62
+ loop Healthcheck
63
+ John->>John: Fight against hypochondria
64
+ end
65
+ Note right of John: Rational thoughts<br/>prevail...
66
+ John-->>Alice: Great!
67
+ John->>Bob: How about you?
68
+ Bob-->>John: Jolly good!
69
+ </div>
70
+
71
+ <div class="card">
72
+ <h1>Welcome to the Mermaid Modeler Tip Sheet</h1>
73
+ <p>
74
+ You can use Mermaid inside HTML5 by including the script and a div with the class or mermaid.
75
+ </p>
76
+ <p>
77
+ Documentation is located here:
78
+ <a href="https://mermaid.js.org/syntax/flowchart.html" target="_blank"
79
+ >Mermaid documentation</a
80
+ >.
81
+ </p>
82
+ </div>
83
+
84
  </body>
85
  </html>