-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
55 lines (48 loc) · 1.81 KB
/
code.html
File metadata and controls
55 lines (48 loc) · 1.81 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
53
54
55
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>EgoVerse | Code</title>
<link rel="stylesheet" href="./assets/css/styles.css" />
</head>
<body>
<header class="site-header"></header>
<script src="./assets/js/nav.js"></script>
<main>
<section class="section">
<div class="container">
<div class="section-head">
<h2>Code</h2>
<p class="muted">Installation, dataset access tooling, and evaluation harness.</p>
</div>
<div class="card">
<h3>Repository</h3>
<p><a href="REPLACE_WITH_GITHUB_REPO_URL">REPLACE_WITH_GITHUB_REPO_URL</a></p>
</div>
<div class="card" style="margin-top:14px;">
<h3>Quick install</h3>
<p class="small">Replace these commands to match your actual repo. Keep them minimal and tested.</p>
<pre style="overflow:auto; margin:0; padding:14px; border:1px solid var(--line); border-radius:16px; background:rgba(34,30,28,.02);">
# Recommended: uv or conda. Example with venv:
python -m venv .venv
source .venv/bin/activate
pip install -U pip
pip install egoverse # or: pip install -e .
</pre>
</div>
<div class="card" style="margin-top:14px;">
<h3>Dataset sync (example)</h3>
<pre style="overflow:auto; margin:0; padding:14px; border:1px solid var(--line); border-radius:16px; background:rgba(34,30,28,.02);">
# Example: sync a filtered subset defined by a config file
egoverse sync --config configs/fold_clothes_small.yaml --out data/egoverse
</pre>
</div>
</div>
</section>
</main>
<footer class="footer"></footer>
<script src="./assets/js/main.js"></script>
<script src="./assets/js/footer.js"></script>
</body>
</html>