20 lines
834 B
HTML
20 lines
834 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<title>YOLOv5 Training Web</title>
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||
|
<body>
|
||
|
<form method="POST" enctype="multipart/form-data">
|
||
|
<select name="model" id="model" required>
|
||
|
<option value="yolov5_onnx">YOLOv5 -> ONNX</option>
|
||
|
</select>
|
||
|
<br />
|
||
|
<input type="text" name="name" id="name" placeholder="Model name" required />
|
||
|
<br />
|
||
|
<input type="email" name="email" id="email" placeholder="Email" required />
|
||
|
<br />
|
||
|
<input type="file" name="dataset" id="dataset" required />
|
||
|
<br />
|
||
|
<input type="submit" />
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|