Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>API Analysis Models</title> | |
| <style> | |
| body { | |
| font-family: "Georgia", serif; | |
| max-width: 1000px; | |
| margin: 0 auto; | |
| padding: 30px; | |
| background-color: #f9f7f4; | |
| color: #333; | |
| } | |
| .header { | |
| text-align: center; | |
| margin-bottom: 40px; | |
| border-bottom: 2px solid #8b7d6b; | |
| padding-bottom: 20px; | |
| } | |
| h1 { | |
| font-size: 36px; | |
| color: #5c4b3e; | |
| font-weight: normal; | |
| letter-spacing: 1px; | |
| } | |
| .model-container { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); | |
| gap: 25px; | |
| } | |
| .model-card { | |
| background-color: #fff; | |
| border: 1px solid #d3c7b6; | |
| border-radius: 5px; | |
| padding: 25px; | |
| box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05); | |
| transition: all 0.3s ease; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .model-card:hover { | |
| box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); | |
| transform: translateY(-5px); | |
| } | |
| .model-card::after { | |
| content: ""; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| height: 5px; | |
| background: linear-gradient(to right, #8b7d6b, #d3c7b6); | |
| } | |
| .icon { | |
| font-size: 36px; | |
| display: block; | |
| margin-bottom: 15px; | |
| text-align: center; | |
| } | |
| h2 { | |
| color: #5c4b3e; | |
| margin: 0 0 20px 0; | |
| font-size: 22px; | |
| text-align: center; | |
| font-weight: normal; | |
| } | |
| .btn { | |
| display: inline-block; | |
| background-color: #8b7d6b; | |
| color: white; | |
| border: none; | |
| border-radius: 3px; | |
| padding: 12px 0; | |
| cursor: pointer; | |
| font-family: "Georgia", serif; | |
| font-size: 16px; | |
| text-decoration: none; | |
| text-align: center; | |
| width: 100%; | |
| transition: background-color 0.3s; | |
| margin-top: 10px; | |
| } | |
| .btn:hover { | |
| background-color: #5c4b3e; | |
| } | |
| .time-series { | |
| background-color: #f4f1e9; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="header"> | |
| <h1>API Analysis Models</h1> | |
| </div> | |
| <div class="model-container"> | |
| <!-- Regression Card --> | |
| <div class="model-card"> | |
| <span class="icon">π</span> | |
| <h2>Response Time</h2> | |
| <a href="https://pranit144-detect1.hf.space" class="btn">Select</a> | |
| </div> | |
| <!-- Anomaly Detection Card --> | |
| <div class="model-card"> | |
| <span class="icon">π₯</span> | |
| <h2>Anomaly Detection</h2> | |
| <a href="https://pranit144-detect2.hf.space" class="btn">Select</a> | |
| </div> | |
| <!-- Binary Classification Card --> | |
| <div class="model-card"> | |
| <span class="icon">β </span> | |
| <h2>Error Prediction</h2> | |
| <a href="https://pranit144-detect3.hf.space" class="btn">Select</a> | |
| </div> | |
| <!-- Multi-Class Classification Card --> | |
| <div class="model-card"> | |
| <span class="icon">π¦</span> | |
| <h2>Status Code</h2> | |
| <a href="https://pranit144-detect5.hf.space" class="btn">Select</a> | |
| </div> | |
| <!-- Time Series Card --> | |
| <div class="model-card time-series"> | |
| <span class="icon">π</span> | |
| <h2>Time Series</h2> | |
| <a href="https://pranit144-forecast1.hf.space" class="btn">Select</a> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |