vla-eval 0.0.0a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- vla_eval-0.0.0a0/.gitignore +38 -0
- vla_eval-0.0.0a0/PKG-INFO +18 -0
- vla_eval-0.0.0a0/README.md +10 -0
- vla_eval-0.0.0a0/pyproject.toml +15 -0
- vla_eval-0.0.0a0/src/vla_eval/__init__.py +4 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/.omx
|
|
2
|
+
/results
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
build/
|
|
11
|
+
dist/
|
|
12
|
+
*.egg-info/
|
|
13
|
+
*.egg
|
|
14
|
+
|
|
15
|
+
# Virtual environments
|
|
16
|
+
.venv/
|
|
17
|
+
venv/
|
|
18
|
+
env/
|
|
19
|
+
|
|
20
|
+
# IDE
|
|
21
|
+
.idea/
|
|
22
|
+
.vscode/
|
|
23
|
+
*.swp
|
|
24
|
+
*.swo
|
|
25
|
+
|
|
26
|
+
# OS
|
|
27
|
+
.DS_Store
|
|
28
|
+
Thumbs.db
|
|
29
|
+
|
|
30
|
+
# Testing / coverage
|
|
31
|
+
.pytest_cache/
|
|
32
|
+
htmlcov/
|
|
33
|
+
.coverage
|
|
34
|
+
coverage.xml
|
|
35
|
+
|
|
36
|
+
# hatch-vcs generated
|
|
37
|
+
src/vla_evaluation_harness/_version.py
|
|
38
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vla-eval
|
|
3
|
+
Version: 0.0.0a0
|
|
4
|
+
Summary: Evaluation harness for Vision-Language-Action models
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# vla-evaluation-harness
|
|
10
|
+
|
|
11
|
+
**One framework to evaluate any VLA model on any robot simulation benchmark.**
|
|
12
|
+
|
|
13
|
+
> 🚧 This package is under active development. A functional release is coming soon.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT
|
|
18
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vla-eval"
|
|
7
|
+
version = "0.0.0a0"
|
|
8
|
+
description = "Evaluation harness for Vision-Language-Action models"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
|
|
13
|
+
[tool.hatch.build.targets.wheel]
|
|
14
|
+
packages = ["src/vla_eval"]
|
|
15
|
+
|