Initial commit: MLflow dashboard project
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
24
static/index.html
Normal file
24
static/index.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>MLflow Dashboard</title>
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header">
|
||||
<h1>MLflow Dashboard</h1>
|
||||
<input type="text" id="trackingUri" placeholder="Tracking URI (e.g. http://192.168.200.231:50111)">
|
||||
<button onclick="loadExperiments()">Connect</button>
|
||||
</div>
|
||||
|
||||
<div class="container" id="content">
|
||||
<div class="loading">Tracking URI를 입력하고 Connect를 클릭하세요.</div>
|
||||
</div>
|
||||
|
||||
<script src="/static/app.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user