25 lines
656 B
HTML
25 lines
656 B
HTML
|
|
<!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>
|