File size: 4,780 Bytes
fea0eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
ec3c8c3
fea0eb7
 
b8accff
 
fea0eb7
 
f2bc526
fea0eb7
 
f2bc526
fea0eb7
 
 
 
 
b8accff
 
fea0eb7
 
b8accff
fea0eb7
 
198296e
b8accff
 
 
 
 
 
 
 
 
fea0eb7
 
 
 
 
b8accff
fea0eb7
 
b8accff
fea0eb7
 
 
 
bf7fd75
4d4a643
bf7fd75
4d4a643
 
 
 
 
 
 
bf7fd75
fea0eb7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b8accff
 
 
 
 
 
 
 
 
fea0eb7
 
 
 
 
 
 
 
 
 
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Hugging Face Transformers.js</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet">

    <link rel="stylesheet" href="css/styles.css">
</head>

<body>

    <div class="container-main">
       
        <!-- Content -->
        <div class="container mt-5">
            <!-- Multimodal Section -->
            <h2>Multimodal</h2>
            <div class="row">
                <div class="col-md-3">
                    <a href="image-to-text.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Image to Text</h5>
                            </div>
                        </div>
                    </a>
                </div>
            </div>
            <!-- Natural Language Processing Section -->
            <h2>Natural Language Processing</h2>
            <div class="row">
                <div class="col-md-3">
                    <a href="sentiments.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Text Sentiment Analysis</h5>
                            </div>
                        </div>
                    </a>
                </div>
                <div class="col-md-3">
                    <a href="zero-shot-classification.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Zero Shot Classification</h5>
                            </div>
                        </div>
                    </a>
                </div>
                <div class="col-md-3">
                    <a href="text-to-text-generation.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Text-to-text Generation</h5>
                            </div>
                        </div>
                    </a>
                </div>
              <!--
                <div class="col-md-3">
                    <a href="promise.html" class="text-decoration-none text-dark"> <!~~ Hyperlink wrapping the card ~~>
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Promise by pipeline function</h5>
                            </div>
                        </div>
                    </a>
                </div>
              -->
            </div>

            <!-- Computer Vision Section -->
            <h2>Computer Vision</h2>
            <div class="row">
                <div class="col-md-3">
                    <a href="image-classification.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Image Classification</h5>
                            </div>
                        </div>
                    </a>
                </div>
                <div class="col-md-3">
                    <a href="zeroshotimageclassification.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Zero Shot Image Classification</h5>
                            </div>
                        </div>
                    </a>
                </div>
                <div class="col-md-3">
                    <a href="mobilevit.html" class="text-decoration-none text-dark"> <!-- Hyperlink wrapping the card -->
                        <div class="card card-custom-height">
                            <div class="card-body">
                                <h5 class="card-title">Mobile Vision</h5>
                            </div>
                        </div>
                    </a>
                </div>
            </div>
        </div>
    </div>

    <script>
    // Vanilla JavaScript code here
    </script>
</body>

</html>