Skip to content

Commit a3341ad

Browse files
committed
--
1 parent a30fae5 commit a3341ad

3 files changed

Lines changed: 122 additions & 2 deletions

File tree

index.htm

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,66 @@
101101
</div>
102102
</div>
103103

104+
<p></p>
105+
<div class="card contentBoxNB">
106+
<div class="card-header"> 📌 Pinned Systems and Repositories 📌</div>
107+
<div class="card-body">
108+
<div class="row no-gutters">
109+
<div class="col-md-3 text-center">
110+
<!--<img class="person abol card-img"/>-->
111+
<p></p>
112+
<img width="90%" src="imgs/needlelogo.png"/>
113+
</div>
114+
<div class="col-md-9">
115+
<div class="card-body">
116+
<b>Needle🪡🔍</b> is a <i>deployment-ready</i> open-source image retrieval database with high accuracy that can handle <b>complex queries in natural language</b>.
117+
It is <strong>Fast</strong>, <strong>Efficient</strong>, and <strong>Precise</strong>, outperforming state-of-the-art methods.
118+
Born from high-end research, Needle is designed to be accessible to everyone while delivering top-notch performance.
119+
Whether you are a researcher, developer, or an enthusiast, Needle opens up innovative ways to explore your image datasets. ✨
120+
<div class="project-links">
121+
<a href="https://uic-indexlab.github.io/Needle/" class="btn project-btn" target="_blank">
122+
🌐 Visit Project
123+
</a>
124+
<a href="https://github.com/UIC-InDeXLab/Needle" class="btn github-btn" target="_blank">
125+
🛠️ View on GitHub
126+
</a>
127+
<a href="https://arxiv.org/abs/2412.00639" class="btn publication-btn" target="_blank">
128+
📄 Read Publication (Preprint)
129+
</a>
130+
</div>
131+
<p class="install-instructions">
132+
📖 <strong>Detailed installation instructions:</strong>
133+
<a href="https://uic-indexlab.github.io/Needle/getting-started.html" target="_blank" class="install-link">
134+
Getting Started
135+
</a>. </p>
136+
</div>
137+
</div>
138+
</div>
139+
<hr/>
140+
<div class="row no-gutters">
141+
<!--<div class="col-md-3 text-center">
142+
<p></p>
143+
<img width="90%" src="imgs/needlelogo.png"/>
144+
</div>-->
145+
<div class="card-body">
146+
<h6><b>RSR 🧮</b>: Efficient Matrix Multiplication for Accelerating Inference in Binary and Ternary Neural Networks</h6>
147+
The codebase provides ready-to-use <b>NumPy</b>-based, <b>Torch</b>-based, and native <b>C++</b> implementations of our <i>RSR</i> and <i>RSR++</i> algorithms.
148+
It contains codes for the inference on CPU and GPU and sample experiments on `1.58bit` models, including
149+
<a href="https://huggingface.co/HF1BitLLM/Llama3-8B-1.58-100B-tokens" target="_blank">[`Llama3-8B-1.58bit`]</a>, <a href="https://huggingface.co/tiiuae/Falcon3-10B-Instruct-1.58bit" target="_blank">[`Falcon3-10B-1.58bit`]</a>, and <a href="https://huggingface.co/tiiuae/Falcon3-3B-Instruct-1.58bit" target="_blank">[`Falcon3-3B-1.58bit`]</a>.
150+
151+
<div class="project-links">
152+
<a href="https://github.com/UIC-InDeXLab/RSR/" class="btn github-btn" target="_blank">
153+
🛠️ View on GitHub
154+
</a>
155+
<a href="https://arxiv.org/abs/2411.06360" class="btn publication-btn" target="_blank">
156+
📄 Read Publication (Preprint)
157+
</a>
158+
</div>
159+
</div>
160+
</div>
161+
</div>
162+
</div>
163+
104164
<div>&nbsp;</div>
105165
<div class="card contentBoxNB">
106166
<div class="card-header">Sponsors</div>

js/indexstart.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ st += ' <ul class="navbar-nav mr-auto"> ';
1616
//st += ' <li class="nav-item active"> ';
1717
//st += ' <a class="nav-link" href="'+path+'projects.htm">Projects<span class="sr-only">(current)</span></a> ';
1818
//st += ' </li> ';
19+
/*
1920
st+= ' <li class="nav-item dropdown">';
2021
st+= ' <a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">';
2122
st+= ' Pinned Systems&Repos';
@@ -25,7 +26,6 @@ st+= ' <a class="dropdown-item" href="https://uic-indexlab.github.io/Ne
2526
st+= ' <a class="dropdown-item" href="https://github.com/UIC-InDeXLab/RSR/" target="_blank"> <img src="imgs/github.png" width="40pt"/>RSR 🧮: Efficient Matrix Multiplication for Binary and Ternary NNs</a>';
2627
st+= ' </div>';
2728
st += ' </li> ';
28-
/*
2929
st+= ' <li class="nav-item dropdown">';
3030
st+= ' <a class="nav-link dropdown-toggle" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">';
3131
st+= ' Project';

style.css

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,64 @@ h1, h3{
114114
text-align: center;
115115
position: relative;
116116
display: inline-block;
117-
}
117+
}
118+
119+
120+
121+
.project-links {
122+
margin-top: 15px;
123+
display: flex;
124+
gap: 10px;
125+
}
126+
127+
.btn {
128+
display: inline-block;
129+
padding: 10px 18px;
130+
font-size: 14px;
131+
font-weight: bold;
132+
text-decoration: none;
133+
border-radius: 5px;
134+
transition: 0.3s;
135+
}
136+
137+
.project-btn {
138+
background-color: #007bff;
139+
color: white;
140+
}
141+
142+
.project-btn:hover {
143+
background-color: #0056b3;
144+
}
145+
146+
.github-btn {
147+
background-color: #333;
148+
color: white;
149+
}
150+
151+
.github-btn:hover {
152+
background-color: #000;
153+
}
154+
155+
.publication-btn {
156+
background-color: #28a745;
157+
color: white;
158+
}
159+
160+
.publication-btn:hover {
161+
background-color: #1e7e34;
162+
}
163+
164+
.install-instructions {
165+
margin-top: 12px;
166+
font-size: 14px;
167+
}
168+
169+
.install-link {
170+
color: #007bff;
171+
font-weight: bold;
172+
text-decoration: none;
173+
}
174+
175+
.install-link:hover {
176+
text-decoration: underline;
177+
}

0 commit comments

Comments
 (0)