awacke1 commited on
Commit
092a741
1 Parent(s): 83ea1a7

Upload 2 files

Browse files
Files changed (1) hide show
  1. index.html +47 -8
index.html CHANGED
@@ -5,15 +5,54 @@
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
+
14
+ <div class="mermaid">
15
+ journey
16
+ title Create AI
17
+ section Training
18
+ Format DataSet Inputs Files, Data Splits: 5: Teacher
19
+ Model Build w/ SKLearn, TF, Pytorch: 3: Student
20
+ Determine Model Performance: 1: Teacher, Student
21
+ section Deploy
22
+ Web Deploy Local and Cloud: 5: Teacher
23
+ Architecture Spaces Gradio Streamlit Heroku AWS Azure and GCCP: 5: Teacher
24
+ section Testing
25
+ Test Model with Input Datasets: 5: Teacher
26
+ Examples. Inputs that Work, Inputs That Break Model: 5: Teacher
27
+ Governance - Analyze, Publish Fairness, Equity, Bias for Datasets and Outputs: 5: Teacher
28
+ </div>
29
+
30
+ <div class="mermaid">
31
+ sequenceDiagram
32
+ participant Alice
33
+ participant Bob
34
+ Alice->>John: Hello John, how are you?
35
+ loop Healthcheck
36
+ John->>John: Fight against hypochondria
37
+ end
38
+ Note right of John: Rational thoughts<br/>prevail...
39
+ John-->>Alice: Great!
40
+ John->>Bob: How about you?
41
+ Bob-->>John: Jolly good!
42
+ </div>
43
+
44
+ <div class="card">
45
+ <h1>Welcome to the Mermaid Modeler Tip Sheet</h1>
46
+ <p>
47
+ You can use Mermaid inside HTML5 by including the script and a div with the class or mermaid.
48
+ </p>
49
+ <p>
50
+ Documentation is located here:
51
+ <a href="https://mermaid.js.org/syntax/flowchart.html" target="_blank"
52
+ >Mermaid documentation</a
53
+ >.
54
+ </p>
55
+ </div>
56
+
57
  </body>
58
  </html>