Example #1
0
    def load_positive_data(self, args):
        """Load the positive class data.

        Called after invocating the fit command.

        The iterator returned here is handled by the pre_processor function
        defined in pre_processor_init.
        """
        iterator = node_link_data_to_eden(args.positive_input_file)
        return iterator
Example #2
0
    def load_positive_data(self, args):
        """Load the positive class data.

        Called after invocating the fit command.

        The iterator returned here is handled by the pre_processor function
        defined in pre_processor_init.
        """
        iterator = node_link_data_to_eden(args.positive_input_file)
        return iterator
Example #3
0
    def load_data(self, args):
        """
        Load data from file.
        FIXME: Called by base command? I've really no idea...

        The iterator returned here is handled by the pre_processor function
        defined in pre_processor_init.
        """
        iterator = node_link_data_to_eden(args.input_file)
        return iterator
Example #4
0
    def load_data(self, args):
        """
        Load data from file.
        FIXME: Called by base command? I've really no idea...

        The iterator returned here is handled by the pre_processor function
        defined in pre_processor_init.
        """
        iterator = node_link_data_to_eden(args.input_file)
        return iterator