File size: 2,016 Bytes
e213c5e
002233a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e213c5e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!-- <!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>
 -->





 <!DOCTYPE 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>