Spaces:
Sleeping
Sleeping
Upload static/index.html with huggingface_hub
Browse files- static/index.html +109 -0
static/index.html
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ko">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Chronos-2 Zero-Shot Demo</title>
|
| 7 |
+
<link rel="stylesheet" href="/static/style.css">
|
| 8 |
+
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
| 9 |
+
</head>
|
| 10 |
+
<body>
|
| 11 |
+
<div class="container">
|
| 12 |
+
<header>
|
| 13 |
+
<h1>Chronos-2 Zero-Shot Forecasting</h1>
|
| 14 |
+
<p class="tagline">No training. No fine-tuning. Just forecast.</p>
|
| 15 |
+
<p class="desc">์
๋ ฅํ ์๊ณ์ด๋ง์ผ๋ก ๋ค์ ๊ฐ์ ์ฆ์ ์์ธกํฉ๋๋ค.</p>
|
| 16 |
+
</header>
|
| 17 |
+
|
| 18 |
+
<div class="tabs">
|
| 19 |
+
<button class="tab-btn active" data-tab="forecast">์์ธก</button>
|
| 20 |
+
<button class="tab-btn" data-tab="compare">๋น๊ต</button>
|
| 21 |
+
</div>
|
| 22 |
+
|
| 23 |
+
<main>
|
| 24 |
+
<div id="tab-forecast" class="tab-content active">
|
| 25 |
+
<section class="input-section">
|
| 26 |
+
<div class="input-header">
|
| 27 |
+
<label for="ts-input">์๊ณ์ด ๋ฐ์ดํฐ ์
๋ ฅ (์ผํ, ๊ณต๋ฐฑ, ์ค๋ฐ๊ฟ ๊ตฌ๋ถ)</label>
|
| 28 |
+
<div class="input-actions">
|
| 29 |
+
<select id="sample-select">
|
| 30 |
+
<option value="">-- ์ํ ๋ถ๋ฌ์ค๊ธฐ --</option>
|
| 31 |
+
<option value="air_passengers">Air Passengers</option>
|
| 32 |
+
<option value="gfk_sample">GFK Sample</option>
|
| 33 |
+
</select>
|
| 34 |
+
<label class="pred-steps">
|
| 35 |
+
์์ธก ์คํ
|
| 36 |
+
<input type="number" id="pred-steps" value="1" min="1" max="24" />
|
| 37 |
+
</label>
|
| 38 |
+
</div>
|
| 39 |
+
</div>
|
| 40 |
+
<textarea id="ts-input" rows="4" placeholder="100, 120, 115, 130 ๋๋ ํ ์ค์ ํ๋์ฉ"></textarea>
|
| 41 |
+
</section>
|
| 42 |
+
|
| 43 |
+
<section class="output-section">
|
| 44 |
+
<div class="forecast-display" id="forecast-display">
|
| 45 |
+
<span class="label">๋ค์ ์์ธก: </span>
|
| 46 |
+
<span class="value" id="forecast-value">โ</span>
|
| 47 |
+
<span class="range" id="forecast-range"></span>
|
| 48 |
+
</div>
|
| 49 |
+
<div class="loading" id="loading" style="display: none;">์์ธก ์ค...</div>
|
| 50 |
+
<div class="error" id="error" style="display: none;"></div>
|
| 51 |
+
<div class="chart-container">
|
| 52 |
+
<canvas id="chart"></canvas>
|
| 53 |
+
</div>
|
| 54 |
+
<div class="download-row">
|
| 55 |
+
<button type="button" id="download-csv">์์ธก ๊ฒฐ๊ณผ CSV ๋ค์ด๋ก๋</button>
|
| 56 |
+
</div>
|
| 57 |
+
</section>
|
| 58 |
+
</div>
|
| 59 |
+
|
| 60 |
+
<div id="tab-compare" class="tab-content">
|
| 61 |
+
<section class="compare-section">
|
| 62 |
+
<h2>์ ํต ML vs Chronos Zero-Shot</h2>
|
| 63 |
+
<p class="compare-intro">์ ํต ML ์๊ณ์ด ์์ธก์ ๋ฐ์ดํฐ ์ ์ฒ๋ฆฌ, ๋ชจ๋ธ ์ ํ, ํ๋ผ๋ฏธํฐ ํ๋, ํ์ต ๋ฑ ์ฌ๋ฌ ๋จ๊ณ๊ฐ ํ์ํฉ๋๋ค. Chronos๋ <strong>ํ์ต/ํ๋ ์์ด</strong> ์
๋ ฅ๋ง์ผ๋ก ์ฆ์ ์์ธกํฉ๋๋ค.</p>
|
| 64 |
+
|
| 65 |
+
<div class="pipeline-row">
|
| 66 |
+
<div class="pipeline-block">
|
| 67 |
+
<h3 class="pipeline-label">์ ํต ML (ARIMA, Prophet ๋ฑ)</h3>
|
| 68 |
+
<div class="pipeline ml-pipeline">
|
| 69 |
+
<div class="step">๋ฐ์ดํฐ ์์ง</div>
|
| 70 |
+
<div class="arrow">โ</div>
|
| 71 |
+
<div class="step">๊ฒฐ์ธก์น ์ฒ๋ฆฌ</div>
|
| 72 |
+
<div class="arrow">โ</div>
|
| 73 |
+
<div class="step">์ ์์ฑ ๊ฒ์ </div>
|
| 74 |
+
<div class="arrow">โ</div>
|
| 75 |
+
<div class="step">์ฐจ๋ถ/๋ณํ</div>
|
| 76 |
+
<div class="arrow">โ</div>
|
| 77 |
+
<div class="step">๊ณ์ ์ฑ ๋ถํด</div>
|
| 78 |
+
<div class="arrow">โ</div>
|
| 79 |
+
<div class="step">๋ชจ๋ธ ์ ํ</div>
|
| 80 |
+
<div class="arrow">โ</div>
|
| 81 |
+
<div class="step">ํ๋ผ๋ฏธํฐ ํ๋</div>
|
| 82 |
+
<div class="arrow">โ</div>
|
| 83 |
+
<div class="step">ํ์ต (fit)</div>
|
| 84 |
+
<div class="arrow">โ</div>
|
| 85 |
+
<div class="step">๊ฒ์ฆ/์ค์ฐจ ํ์ธ</div>
|
| 86 |
+
<div class="arrow">โ</div>
|
| 87 |
+
<div class="step">ํ๋ ๋ฐ๋ณต</div>
|
| 88 |
+
<div class="arrow">โ</div>
|
| 89 |
+
<div class="step">์์ธก</div>
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
<div class="pipeline-block">
|
| 93 |
+
<h3 class="pipeline-label">Chronos Zero-Shot</h3>
|
| 94 |
+
<div class="pipeline chronos-pipeline">
|
| 95 |
+
<div class="step highlight">๋ฐ์ดํฐ ์
๋ ฅ</div>
|
| 96 |
+
<div class="arrow">โ</div>
|
| 97 |
+
<div class="step highlight">์์ธก</div>
|
| 98 |
+
</div>
|
| 99 |
+
</div>
|
| 100 |
+
</div>
|
| 101 |
+
|
| 102 |
+
<p class="compare-cta">Chronos๋ ํ์ต ์์ด <strong>์
๋ ฅ ์ฆ์ ์์ธก</strong>ํฉ๋๋ค.</p>
|
| 103 |
+
</section>
|
| 104 |
+
</div>
|
| 105 |
+
</main>
|
| 106 |
+
</div>
|
| 107 |
+
<script src="/static/app.js"></script>
|
| 108 |
+
</body>
|
| 109 |
+
</html>
|