SG161222 commited on
Commit
7707a75
·
verified ·
1 Parent(s): 17c1659

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +121 -1
README.md CHANGED
@@ -3,4 +3,124 @@ license: apache-2.0
3
  pipeline_tag: text-to-image
4
  base_model:
5
  - Qwen/Qwen-Image
6
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  pipeline_tag: text-to-image
4
  base_model:
5
  - Qwen/Qwen-Image
6
+ ---
7
+ <html>
8
+ <head>
9
+ <style>
10
+ body {
11
+ display: flex;
12
+ justify-content: center;
13
+ align-items: center;
14
+ height: 100vh;
15
+ margin: 0;
16
+ background: #f4f4f4;
17
+ font-family: Arial, sans-serif;
18
+ }
19
+ .card {
20
+ background: #FF8C00;
21
+ border-radius: 16px;
22
+ padding: 24px;
23
+ width: 100%;
24
+ box-shadow: 0 6px 12px rgba(0,0,0,0.2);
25
+ color: #fff;
26
+ }
27
+ .header {
28
+ display: flex;
29
+ align-items: center;
30
+ margin-bottom: 16px;
31
+ }
32
+ .spinner {
33
+ width: 24px;
34
+ height: 24px;
35
+ margin-right: 12px;
36
+ border: 4px solid rgba(255,255,255,0.5);
37
+ border-top-color: #fff;
38
+ border-radius: 50%;
39
+ animation: spin 3s linear infinite;
40
+ }
41
+ h2 {
42
+ font-size: 1.2rem;
43
+ margin: 0;
44
+ }
45
+ .info-blocks {
46
+ display: flex;
47
+ border: 1px solid rgba(255,255,255,0.5);
48
+ border-radius: 12px;
49
+ overflow: hidden;
50
+ margin-bottom: 16px;
51
+ }
52
+ .info-block {
53
+ flex: 1;
54
+ padding: 8px 12px;
55
+ font-size: 0.85rem;
56
+ text-align: center;
57
+ }
58
+ .info-block + .info-block {
59
+ border-left: 1px solid rgba(255,255,255,0.5);
60
+ }
61
+ .info-block strong {
62
+ display: block;
63
+ margin-bottom: 4px;
64
+ font-weight: 600;
65
+ }
66
+ .progress-container {
67
+ background: rgba(255,255,255,0.3);
68
+ border-radius: 12px;
69
+ overflow: hidden;
70
+ height: 14px;
71
+ margin-bottom: 8px;
72
+ }
73
+ .progress-bar {
74
+ width: 0%;
75
+ height: 100%;
76
+ background: #fff;
77
+ animation: load 4s ease-in-out forwards;
78
+ }
79
+ .status-text {
80
+ font-size: 0.9rem;
81
+ text-align: center;
82
+ }
83
+ @keyframes spin {
84
+ to { transform: rotate(360deg); }
85
+ }
86
+ @keyframes load {
87
+ 0% { width: 0; }
88
+ 100% { width: 80%; }
89
+ }
90
+ </style>
91
+ </head>
92
+ <body>
93
+ <div class="card">
94
+ <div class="header">
95
+ <div class="spinner"></div>
96
+ <h2>SPARK.Qwen_v1 Fine-Tune</h2>
97
+ </div>
98
+ <div class="info-blocks">
99
+ <div class="info-block">
100
+ <strong>START DATE:</strong>
101
+ November 17, 2025
102
+ </div>
103
+ <div class="info-block">
104
+ <strong>LAST UPDATE:</strong>
105
+ November 17, 2025
106
+ </div>
107
+ <div class="info-block">
108
+ <strong>DATASET SIZE:</strong>
109
+ -
110
+ </div>
111
+ <div class="info-block">
112
+ <strong>EQUIPMENT:</strong>
113
+ 1 x RTX 4090 (24GB)
114
+ </div>
115
+ <div class="info-block">
116
+ <strong>TRAINING TIME:</strong>
117
+ 0h 0m
118
+ </div>
119
+ </div>
120
+ <div class="progress-container">
121
+ <div class="progress-bar"></div>
122
+ </div>
123
+ <div class="status-text">Fine-Tune... 0%</div>
124
+ </div>
125
+ </body>
126
+ </html>