Exemplo n.º 1
0
    def test_save(self, dummy_folder):
        """ Test saving the model

        :return None:
        """
        with tempfile.NamedTemporaryFile(suffix = ".pkl", delete = True) as tf:
            assert autodoclass.Autodoclass().train(dummy_folder).save(tf.name)
Exemplo n.º 2
0
    def test_load(self, dummy_folder):
        """ Test loading the file

        :return None:
        """
        with tempfile.NamedTemporaryFile(suffix = ".pkl", delete = True) as tf:
            model = autodoclass.Autodoclass().train(dummy_folder).save(tf.name)
            del model
            assert autodoclass.Autodoclass.load(tf.name)
Exemplo n.º 3
0
def test_commands_predict(dummy_folder):
    """ Test the predict command

    :return None:
    """
    DummyArgs = collections.namedtuple("DummyArgs", "folder model_filename")
    test_model_filename = "test_commands_predict_model.pkl"
    args = DummyArgs(folder = dummy_folder, model_filename = test_model_filename)
    autodoclass.Autodoclass().train(dummy_folder).save(test_model_filename)
    commands.predict(args)
    os.remove(test_model_filename)
Exemplo n.º 4
0
    def test_predict_types(self, dummy_folder, dummy_text):
        """ Test predicting with the model

        :return None:
        """
        model = autodoclass.Autodoclass().train(dummy_folder)
        document_predictions, lines_predictions = model.predict(dummy_text)
        assert isinstance(document_predictions[0], int)
        assert isinstance(document_predictions[1], float)
        for line_prediction in lines_predictions:
            assert isinstance(line_prediction[0], int)
            assert isinstance(line_prediction[1], float)
Exemplo n.º 5
0
def train(args,
          model_filename="autodoclass.model.{}.pkl".format(
              datetime.now().strftime("%Y%m%d_%H%M%S"))):
    """ Train a model and save the output to a model filename

    :return None:
    """
    model = autodoclass.Autodoclass()
    print("Training model", model, "from folder", args.folder)
    model.train(args.folder)
    print("Saving trained model to filename", model_filename)
    model.save(model_filename)
Exemplo n.º 6
0
    def test_init(self):
        """ Test initialization of the class

        :return None:
        """
        assert autodoclass.Autodoclass()
Exemplo n.º 7
0
    def test_predict(self, dummy_folder, dummy_text):
        """ Test predicting with the model

        :return None:
        """
        assert autodoclass.Autodoclass().train(dummy_folder).predict(dummy_text)
Exemplo n.º 8
0
    def test_train(self, dummy_folder):
        """ Train the model

        :return None:
        """
        assert autodoclass.Autodoclass().train(dummy_folder)