File size: 3,654 Bytes
ef53f13 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradio Examples</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<custom-navbar></custom-navbar>
<main class="max-w-6xl mx-auto p-8">
<h1 class="text-3xl font-bold mb-8">Gradio Examples</h1>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/1" alt="Text Generation" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Text Generation</h3>
<p class="text-gray-600 mb-4">Generate text with GPT-2 model</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/2" alt="Image Classification" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Image Classification</h3>
<p class="text-gray-600 mb-4">Classify images with ResNet</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/3" alt="Speech Recognition" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Speech Recognition</h3>
<p class="text-gray-600 mb-4">Convert speech to text</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/4" alt="Style Transfer" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Style Transfer</h3>
<p class="text-gray-600 mb-4">Transfer artistic styles to images</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/5" alt="Sentiment Analysis" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Sentiment Analysis</h3>
<p class="text-gray-600 mb-4">Analyze text sentiment</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
<div class="border rounded-lg overflow-hidden hover:shadow-md transition-shadow">
<img src="http://static.photos/technology/640x360/6" alt="Object Detection" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold text-lg mb-2">Object Detection</h3>
<p class="text-gray-600 mb-4">Detect objects in images</p>
<a href="#" class="text-indigo-600 font-medium">View Demo</a>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html> |