Skip to content

Commit aada0aa

Browse files
committed
init commit
0 parents  commit aada0aa

File tree

5 files changed

+59
-0
lines changed

5 files changed

+59
-0
lines changed

.nojekyll

Whitespace-only changes.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.moon.graphics

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<center><img src="raccoon_logo.png" width="30%" style="padding: 2em" />
2+
3+
Raccoon Research creates data and training pipelines for multimodal generative models.
4+
5+
[Discord](https://discord.gg/sz6MRfQggc) - [Github](https://github.com/RaccoonResearch) - [Huggingface](https://huggingface.co/RaccoonResearch)
6+
</center>
7+
8+
## Projects
9+
10+
### Simian
11+
Simian is a synthetic data generator for creating perfect caption pairs to image and video data. It is designed to help researchers and developers generate high-quality training datasets for various computer vision and NLP tasks. By using Simian, users can quickly and easily create large datasets that improve the performance of their models.
12+
13+
Learn more: [Simian](https://simian.mov)
14+
15+
## Sponsors
16+
17+
We are proud to be sponsored by [DeepAI](https://deepai.org). Their support enables us to continue our work in developing cutting-edge data and training pipelines.

index.html

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Moon</title>
8+
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/3.0.8/marked.min.js"></script>
9+
<link rel="preconnect" href="https://fonts.googleapis.com">
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11+
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;400&display=swap" rel="stylesheet">
12+
<style>
13+
body {
14+
font-family: 'Source Code Pro', monospace;
15+
margin: 0;
16+
padding: 1em;
17+
}
18+
#content {
19+
max-width: 100%;
20+
overflow-wrap: break-word;
21+
word-wrap: break-word;
22+
padding: 10px; /* Add some padding to keep content away from the edges */
23+
}
24+
</style>
25+
</head>
26+
27+
<body>
28+
<div id="content"></div>
29+
<script>
30+
fetch('README.md')
31+
.then(response => response.text())
32+
.then(text => {
33+
const contentDiv = document.getElementById('content');
34+
contentDiv.innerHTML = marked(text);
35+
})
36+
.catch(error => {
37+
console.error("An error occurred while loading the Markdown file:", error);
38+
});
39+
</script>
40+
</body>
41+
</html>

raccoon_logo.png

33.3 KB
Loading

0 commit comments

Comments
 (0)