-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 2.47 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 2.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computer Intelligence Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
[<a href="about.html">About</a>]
[<a href="arena.html">SWE Arena</a>]
</nav>
</header>
<main>
<h1>Computer Intelligence Project</h1>
<p>
The Computer Intelligence Project builds on the <a href="https://www.bigcode-project.org/"><u>BigCode Project</u></a>, developing open models, datasets, and evaluation tools for computer-level code intelligence.
</p>
<p>
The ultimate goal of code intelligence is to automate computer-level tasks via executable programs.
These computer-level tasks are typically based on graphical user interfaces (GUIs) rendered by software applications.
This means successful automation requires models to understand both the textual information and the visual contexts
perceived by human users -- including layout, UI elements, and their functional relationships. However, current
multimodal models still struggle to effectively design and interact with these visual contexts.
Additionally, there is limited data available to train such models.
</p>
<p>
In this project, we aim to develop a new generation of code intelligence -- <b>Computer Intelligence</b>,
that can fully utilize the computer-level visual information to perform complex and practical tasks.
Particularly, we focus on three key application domains: Web Interface Automation, Data Science Workflows,
and Full Stack Development.
The expected outcome will be open models, datasets, and evaluation tools.
</p>
<!-- New section for sample project names -->
<section>
<h2>Projects</h2>
<ul>
<li>SWE Arena: <a href="arena.html"><u>[Project]</u></a>, <a href="blog/swe-arena.html"><u>[Blog]</u></a></li>
</ul>
</section>
Contact:
[<a href="mailto:computer.intelligence.project@gmail.com"><u>Email</u></a>]
<!-- [<a href="#"><u>Discord</u></a>] -->
[<a href="https://github.com/BigComputer-Project"><u>GitHub</u></a>]
[<a href="https://x.com/BigComProject"><u>X</u></a>]
</main>
</body>
</html>