rominf commited on
Commit
f60fbca
1 Parent(s): fadb9e1

Add stanza-fi-model-tokenize-tdt package

Browse files
Files changed (3) hide show
  1. index.html +15 -16
  2. stanza-fi-model-tokenize-tdt/index.html +37 -0
  3. style.css +0 -28
index.html CHANGED
@@ -1,19 +1,18 @@
1
  <!doctype html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
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>
 
 
1
  <!doctype html>
2
  <html>
3
+ <head>
4
+ <title>Simple index</title>
5
+ </head>
6
+ <body>
7
+ <h1>Simple index</h1>
8
+
9
+ <p>Generated on 2024-07-21 03:39:27.</p>
10
+
11
+ <ul>
12
+
13
+ <li><a href="stanza-fi-model-tokenize-tdt/index.html">stanza-fi-model-tokenize-tdt</a></li>
14
+
15
+ </ul>
16
+ </body>
 
 
17
  </html>
18
+
stanza-fi-model-tokenize-tdt/index.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <title>stanza-fi-model-tokenize-tdt</title>
5
+ </head>
6
+ <body>
7
+ <h1>stanza-fi-model-tokenize-tdt</h1>
8
+ <p>
9
+ Latest version:
10
+ <input
11
+ type="text"
12
+ value="stanza-fi-model-tokenize-tdt==1.8.0"
13
+ id="requirement"
14
+ style="font-family: monospace; width: 35ch;"
15
+ readonly="readonly"
16
+ />
17
+ </p>
18
+
19
+ <p>Generated on 2024-07-21 03:39:27.</p>
20
+
21
+ <ul>
22
+
23
+ <li>
24
+ <a
25
+ href="https://huggingface.co/rominf/stanza-fi-python-packaging/resolve/main/packaging/pypi/stanza_fi_model_tokenize_tdt-1.8.0-py3-none-any.whl"
26
+ >stanza_fi_model_tokenize_tdt-1.8.0-py3-none-any.whl</a>
27
+ (1.8.0)
28
+ </li>
29
+
30
+ </ul>
31
+
32
+ <script>
33
+ document.getElementById('requirement').onfocus = (e) => e.target.select();
34
+ </script>
35
+ </body>
36
+ </html>
37
+
style.css DELETED
@@ -1,28 +0,0 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }