Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- README.md +17 -10
- index.html +33 -19
README.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
| 1 |
-
---
|
| 2 |
-
title: Alfa
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
-
sdk: static
|
| 7 |
-
pinned:
|
| 8 |
-
---
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Alfa Analytics B2B Platform
|
| 3 |
+
emoji: 🏦
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: blue
|
| 6 |
+
sdk: static
|
| 7 |
+
pinned: true
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Альфа-Аналитика B2B (Real Data & AI Platform)
|
| 11 |
+
|
| 12 |
+
B2B Analytics Platform featuring:
|
| 13 |
+
- Real-time DaData API Company INN Search
|
| 14 |
+
- OpenStreetMap POI Location Analysis
|
| 15 |
+
- Central Bank of Russia Macro Data & Demand Forecasting
|
| 16 |
+
|
| 17 |
+
GitHub Repository: [github.com/ArtemChik103/alfa](https://github.com/ArtemChik103/alfa)
|
index.html
CHANGED
|
@@ -1,19 +1,33 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="ru">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Альфа-Аналитика B2B | Platform Demo</title>
|
| 7 |
+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
|
| 8 |
+
<style>
|
| 9 |
+
body { font-family: 'Inter', sans-serif; background: #0b0f19; color: #f3f4f6; padding: 2rem; }
|
| 10 |
+
.container { max-width: 900px; margin: 0 auto; background: #111827; border: 1px solid #1f2937; padding: 2rem; border-radius: 16px; }
|
| 11 |
+
h1 { color: #ef4444; }
|
| 12 |
+
.badge { background: #1f2937; color: #60a5fa; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.85rem; }
|
| 13 |
+
.btn { display: inline-block; background: #ef4444; color: white; padding: 0.7rem 1.4rem; text-decoration: none; border-radius: 8px; font-weight: 700; margin-top: 1rem; }
|
| 14 |
+
.btn:hover { background: #dc2626; }
|
| 15 |
+
</style>
|
| 16 |
+
</head>
|
| 17 |
+
<body>
|
| 18 |
+
<div class="container">
|
| 19 |
+
<h1>🏦 Альфа-Аналитика B2B</h1>
|
| 20 |
+
<p style="color:#9ca3af; margin-bottom: 1.5rem;">Интеллектуальная B2B платформа геоаналитики, прогнозирования спроса и сегментации клиентов с поддержкой DaData API и ЦБ РФ.</p>
|
| 21 |
+
|
| 22 |
+
<div style="margin-bottom: 1.5rem;">
|
| 23 |
+
<span class="badge">DaData API INN Integration</span>
|
| 24 |
+
<span class="badge">OpenStreetMap POIs</span>
|
| 25 |
+
<span class="badge">CBR Macro Rates</span>
|
| 26 |
+
<span class="badge">CatBoost R² = 0.884</span>
|
| 27 |
+
</div>
|
| 28 |
+
|
| 29 |
+
<p>Код проекта обновлен и доступен на GitHub:</p>
|
| 30 |
+
<a href="https://github.com/ArtemChik103/alfa" target="_blank" class="btn">Открыть Репозиторий ArtemChik103/alfa ➔</a>
|
| 31 |
+
</div>
|
| 32 |
+
</body>
|
| 33 |
+
</html>
|