Spaces:
Sleeping
Sleeping
| <!-- <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>My static Space</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| </head> | |
| <body> | |
| <div class="card"> | |
| <h1>Welcome to your static Space!</h1> | |
| <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p> | |
| <p> | |
| Also don't forget to check the | |
| <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>. | |
| </p> | |
| </div> | |
| </body> | |
| </html> | |
| --> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TrueCheck - Fake News Detection</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="hero-section"> | |
| <div class="hero-content"> | |
| <div class="hero-text"> | |
| <h1>TrueCheck</h1> | |
| <p>Detect fake news with our advanced AI-powered system using BERT, BiLSTM, and Attention mechanisms.</p> | |
| <a href="https://huggingface.co/spaces" class="btn" target="_blank">Visit App</a> | |
| </div> | |
| <div class="hero-image"> | |
| <img src="https://img.freepik.com/free-vector/fake-news-concept-illustration_114360-3189.jpg" alt="Fake News Detection"> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="container"> | |
| <h2>About TrueCheck</h2> | |
| <p>TrueCheck uses a hybrid deep learning model combining:</p> | |
| <ul> | |
| <li>BERT for contextual embeddings</li> | |
| <li>BiLSTM for sequence modeling</li> | |
| <li>Attention mechanism for interpretability</li> | |
| </ul> | |
| <p>Explore more about our project in the <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.</p> | |
| </div> | |
| </body> | |
| </html> |