TrainingDataExporter #4584
Labels
area:rasa-oss 🎡
Anything related to the open source Rasa framework
area:rasa-oss/training-data
Issues focused around Rasa training data (stories, NLU, domain, etc.)
type:discussion 👨👧👦
Early stage of an idea or validation of thoughts. Should NOT be closed by PR.
type:maintenance 🔧
Improvements to tooling, testing, deployments, infrastructure, code style.
I propose a component
TrainingDataExporter
which mirrors theTrainingDataImporter
.class TrainingDataExporter: @staticmethod def save_domain(domain: Domain, path: Text) -> None: pass @staticmethod def save_training_data(training_data: TrainingData, path: Text) -> None: pass @staticmethod def save_stories(stories: List[Story], path: Text) -> None: pass @staticmethod def save_config(config: Dict, path: Text) -> None: pass
Goals:
Implementations:
The text was updated successfully, but these errors were encountered: