Edit model card

mserras/setfit-alpaca-es-unprocessable-sample-detection-multi

This is a SetFit model that can be used for filtering the Alpaca ES instruction dataset.

The base model is the multilingual model of Paraphrase mpnet base v2 from Sentence Transformers

This model has been developed during the 2023 Hackaton organized by SomosNLP/HF Card and with the GPUs provided by Q Blocks

This model has been trained over "unprocessable" samples of the translated Clean Alpaca Es dataset from the HF Argilla space https://huggingface.co/spaces/mserras/somos-alpaca-es.

To this end, a custom tag is proposed: "unprocessable" which corresponds to instruction/input/output triplets that require processing image, fetching information from the open web and similar tasks where the LLM has no capability action, thus, ending in hallucinations or strange outcomes.

As this model was trained over samples of Alpaca, which were generated using OpenAI services, this model cannot be used for commercial purposes or to compete against OpenAI

Usage

To use this model for inference, first install the SetFit library:

python -m pip install setfit

You can then run inference as follows:

from setfit import SetFitModel
import argilla as rg


# Download from Hub and run inference
model = SetFitModel.from_pretrained("mserras/setfit-alpaca-es-unprocessable-sample-detection")

def instruct_fields_to_text(field_instruction: str, field_input: str, field_output: str):
    """Given the instruction, input and output fields, return a text to be used by setfit"""
    return f"INSTRUCTION:\n{field_instruction}\nINPUT:\n{field_input}\nOUTPUT:\n{field_output}\n"

def sample_to_text(sample: rg.TextClassificationRecord) -> str:
    """Converts and Argilla TextClassificationRecord to a text to be used by setfit"""
    return instruct_fields_to_text(sample.inputs["1-instruction"], sample.inputs["2-input"], sample.inputs["3-output"])

# For a given Argilla record:

unprocessable_score = model.predict_proba([sample_to_text(argilla_record)])[0].tolist()[1]

Evaluation

Disclaimer: There was no formal evaluation done, just a bunch of guys looking at the data & the outcomes.

Changelog

  • [09/04/2023] SQL code generation, date conversion, percentual discounts and renewable energies no longer detected as unprocessable.
  • [06/04/2023] It no longer detects password generation as unprocessable.
Downloads last month
1
Inference Examples
Inference API (serverless) does not yet support sentence-transformers models for this pipeline type.

Datasets used to train hackathon-somos-nlp-2023/setfit-alpaca-es-unprocessable-sample-detection-multi