def get_config()

in src/smjsindustry/finance/processor_config.py [0:0]


    def get_config(self) -> Dict[str, Union[str, int]]:
        """Returns the config to be passed to a SageMaker JumpStart Industry Summarizer instance."""
        return {
            "processor_type": self.processor_type,
            "summary_size": self.summary_size,
            "vector_size": self.vector_size,
            "min_count": self.min_count,
            "epochs": self.epochs,
            "metric": self.metric,
            "init": self.init,
        }