infer / index.html
s-ahal's picture
Update index.html
139dfe0 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Infer</title>
<link rel="stylesheet" href="static/styles.css" />
<link rel="icon" type="image/svg+xml" href="static/assets/favicon.svg" />
<link rel="icon" type="image/png" href="static/assets/favicon.png" />
</head>
<body>
<header class="main-header">
<div class="header-left">
<h1>
<a href="/" class="home-link"
>Infer <span class="star"></span></a
>
</h1>
<p class="subtitle">Making AI accountability tools for artists.</p>
</div>
<nav class="header-nav">
<a href="#" class="nav-link">About</a>
<span class="nav-separator"></span>
<a href="/resources" class="nav-link">Resources</a>
<span class="nav-separator"></span>
<a href="mailto:hello@infer.ai" class="nav-link">Contact</a>
</nav>
</header>
<main class="main-content">
<div class="home-columns">
<section class="upload-section" style="min-height: 540px">
<div class="card-header">
<h2>Model select</h2>
<p>Select an AI model to test against</p>
</div>
<div class="card-content">
<div class="model-selector">
<div class="custom-dropdown" id="modelDropdown">
<button
type="button"
class="dropdown-toggle"
id="dropdownToggle"
>
<span id="selectedModel">CompVis Stable Diffusion v1.4</span>
<img
src="static/assets/arrow-down.svg"
alt="Dropdown arrow"
id="dropdown-arrow"
/>
</button>
<ul class="dropdown-menu" id="dropdownMenu" hidden>
<li
class="dropdown-option selected"
data-value="CompVis/stable-diffusion-v1-4"
>
CompVis Stable Diffusion v1.4
</li>
<li
class="dropdown-option"
data-value="rupeshs/LCM-runwayml-stable-diffusion-v1-5"
>
Runway Stable Diffusion v1.5
</li>
<li
class="dropdown-option"
data-value="prompthero/openjourney-v4"
>
OpenJourney v4
</li>
</ul>
</div>
</div>
<div class="upload-area" id="uploadArea">
<input type="file" id="imageInput" accept="image/*" hidden />
<div class="upload-placeholder">
<img
src="static/assets/upload-icon.svg"
alt="Upload"
id="uploadIcon"
/>
<p>Click or drag-and-drop to upload a file</p>
</div>
<img id="imagePreview" class="preview-image" hidden />
</div>
<div id="errorMessage" class="error-message"></div>
<button id="submitButton" class="submit-button" disabled>
<span>Let's go</span>
<span></span>
</button>
</div>
</section>
<section class="result-section" id="result" hidden>
<div class="result-content">
<div class="result-image-container">
<img id="resultImage" class="result-image" hidden />
</div>
<h2>Result: <span id="resultStatus"></span></h2>
<p id="resultDescription"></p>
<div class="probability-section">
<p>
Predicted membership probability:
<span id="probabilityValue"></span>
</p>
<div class="probability-bar">
<div id="probabilityFill" class="probability-fill"></div>
</div>
</div>
<div id="likelyInfo" class="likely-info" hidden>
<p class="likely-users">
There are <strong>531 other users</strong> that have work that
is likely in this model's training data.
</p>
<h3>What now?</h3>
<div class="result-actions">
<a href="/resources" class="action-button"
>Protect your work <span class="arrow"></span></a
>
<a href="/get-organized" class="action-button"
>Get organized <span class="arrow"></span></a
>
</div>
</div>
</div>
</section>
</div>
</main>
<!-- <div
class="contact-optin"
style="display: none; margin: 2em auto 0 auto; max-width: 400px"
>
<input type="checkbox" id="optInCheckbox" />
<label for="optInCheckbox"
>Notify me if there are updates about this project (optional):</label
>
<input
type="email"
id="contactInfo"
class="styled-input"
placeholder="Your email (optional)"
style="margin-left: 0.5em"
/>
</div> -->
<script src="static/app.js"></script>
<div id="aboutOverlay" class="about-overlay" style="display:none;">
<div class="about-modal">
<button class="about-close" id="aboutCloseBtn" aria-label="Close About">&times;</button>
<h2>About Infer</h2>
<p>
Infer helps artists and image creators check whether their work was likely used to train popular AI models. By comparing your image against model behaviors, we can estimate its presence in the training data—something that's often invisible by design.
</p>
<p>
If your image comes up as a likely match, you'll get two paths:
<ul>
<li>Protect Your Art with tools to cloak, license, or fight back</li>
<li>Get Organized with others facing the same issue—through legal coordination, shared resources, and community defense</li>
</ul>
</p>
</div>
</div>
</body>
</html>