mirror of
https://github.com/Tavish9/any4lerobot.git
synced 2026-06-26 07:37:01 +00:00
f40e09f481
* Add generic converter pipeline Co-authored-by: Codex <codex@openai.com> * Update generic converter README Co-authored-by: Codex <codex@openai.com> * Simplify generic converter README Co-authored-by: Codex <codex@openai.com> * Simplify adapter task loading API Co-authored-by: Codex <codex@openai.com> * Require adapter output path Co-authored-by: Codex <codex@openai.com> * Use adapter temp output path for LIBERO Co-authored-by: Codex <codex@openai.com> * Remove LIBERO changes from generic converter PR Co-authored-by: Codex <codex@openai.com> * update readme --------- Co-authored-by: Codex <codex@openai.com>
12 lines
246 B
Python
12 lines
246 B
Python
from .adapter import BaseAdapter
|
|
from .pipeline import run_converter
|
|
from .utils import ConversionTask, FeatureSpec, TaskMetadata
|
|
|
|
__all__ = [
|
|
"BaseAdapter",
|
|
"ConversionTask",
|
|
"FeatureSpec",
|
|
"TaskMetadata",
|
|
"run_converter",
|
|
]
|