Tags
When to Use Tags
How to Add Tags
During Execution
import json
# Tags are a list of strings
metadata = {
"valohai.tags": ["validated", "production", "experiment-42"],
}
# Save your output file
save_path = "/valohai/outputs/model.pkl"
model.save(save_path)
# Save metadata with tags
metadata_path = "/valohai/outputs/model.pkl.metadata.json"
with open(metadata_path, "w") as f:
json.dump(metadata, f)For Multiple Files
Find Files Using Tags
Web Application

Common Tagging Patterns
Experiment Tracking
Quality Labels
Environment Management
Data Source Tracking
Team Ownership
Model Architecture
Combining Multiple Categories
Best Practices
Use Consistent Naming Conventions
Keep Tags Concise
Use Tags for Filtering, Not Storage
Related Pages
Next Steps
Last updated
Was this helpful?
