AlphaSpace: Enabling Robotic Actions through Semantic Tokenization and Symbolic Reasoning
Paper
•
2503.18769
•
Published
•
2
None defined yet.
pip install logfire-callback
export LOGFIRE_TOKEN=your_logfire_token
from transformers import Trainer, TrainingArguments
from logfire_callback import LogfireCallback
# Initialize your model, dataset, etc.
training_args = TrainingArguments(
output_dir="./results",
num_train_epochs=3,
# ... other training arguments
)
trainer = Trainer(
model=model,
args=training_args,
train_dataset=train_dataset,
callbacks=[LogfireCallback()] # Add the Logfire callback here
)
trainer.train()