agentlans / e5-small-v2-nli

huggingface.co
Total runs: 12
24-hour runs: 2
7-day runs: 3
30-day runs: -4
Model's Last Updated: November 14 2024
text-classification

Introduction of e5-small-v2-nli

Model Details of e5-small-v2-nli

e5-small-v2-nli

  • Base Model: intfloat/e5-small-v2
  • Task: Natural Language Inference (NLI)
  • Framework: Hugging Face Transformers, Sentence Transformers

e5-small-v2-nli is a fine-tuned NLI model that classifies the relationship between pairs of sentences into three categories: entailment, neutral, and contradiction. It enhances the capabilities of intfloat/e5-small-v2 for improved performance on NLI tasks.

Intended Use

e5-small-v2-nli is ideal for applications requiring understanding of logical relationships between sentences, including:

  • Semantic textual similarity
  • Question answering
  • Dialogue systems
  • Content moderation
Performance

e5-small-v2-nli was trained on the sentence-transformers/all-nli dataset, achieving competitive results in sentence pair classification.

Performance on the MNLI matched validation set:

  • Accuracy: 0.7765
  • Precision: 0.78
  • Recall: 0.78
  • F1-score: 0.77
Training details
Training Details
  • Dataset:

  • Sampling:

    • 100 000 training samples and 10 000 evaluation samples.
  • Fine-tuning Process:

    • Custom Python script with adaptive precision training (bfloat16).
    • Early stopping based on evaluation loss.
  • Hyperparameters:

    • Learning Rate: 2e-5
    • Batch Size: 64
    • Optimizer: AdamW (weight decay: 0.01)
    • Training Duration: Up to 10 epochs
Reproducibility

To ensure reproducibility:

  • Fixed random seed: 42
  • Environment:
    • Python: 3.10.12
    • PyTorch: 2.5.1
    • Transformers: 4.44.2
Usage Instructions
Using Sentence Transformers
from sentence_transformers import CrossEncoder

model_name = "agentlans/e5-small-v2-nli"
model = CrossEncoder(model_name)
scores = model.predict(
    [
        ("A man is eating pizza", "A man eats something"),
        (
            "A black race car starts up in front of a crowd of people.",
            "A man is driving down a lonely road.",
        ),
    ]
)

label_mapping = ["entailment", "neutral", "contradiction"]
labels = [label_mapping[score_max] for score_max in scores.argmax(axis=1)]
print(labels)
# Output: ['entailment', 'contradiction']
Using Transformers Library
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch

model_name = "agentlans/e5-small-v2-nli"
model = AutoModelForSequenceClassification.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)

features = tokenizer(
    [
        "A man is eating pizza",
        "A black race car starts up in front of a crowd of people.",
    ],
    ["A man eats something", "A man is driving down a lonely road."],
    padding=True,
    truncation=True,
    return_tensors="pt",
)

model.eval()
with torch.no_grad():
    scores = model(**features).logits
    label_mapping = ["entailment", "neutral", "contradiction"]
    labels = [label_mapping[score_max] for score_max in scores.argmax(dim=1)]
    print(labels)
# Output: ['entailment', 'contradiction']
Limitations and Ethical Considerations

e5-small-v2-nli may reflect biases present in the training data. Users should evaluate its performance in specific contexts to ensure fairness and accuracy.

Conclusion

e5-small-v2-nli offers a robust solution for NLI tasks, enhancing intfloat/e5-small-v2 's capabilities with straightforward integration into existing frameworks. It aids developers in building intelligent applications that require nuanced language understanding.

Runs of agentlans e5-small-v2-nli on huggingface.co

12
Total runs
2
24-hour runs
2
3-day runs
3
7-day runs
-4
30-day runs

More Information About e5-small-v2-nli huggingface.co Model

More e5-small-v2-nli license Visit here:

https://choosealicense.com/licenses/mit

e5-small-v2-nli huggingface.co

e5-small-v2-nli huggingface.co is an AI model on huggingface.co that provides e5-small-v2-nli's model effect (), which can be used instantly with this agentlans e5-small-v2-nli model. huggingface.co supports a free trial of the e5-small-v2-nli model, and also provides paid use of the e5-small-v2-nli. Support call e5-small-v2-nli model through api, including Node.js, Python, http.

e5-small-v2-nli huggingface.co Url

https://huggingface.co/agentlans/e5-small-v2-nli

agentlans e5-small-v2-nli online free

e5-small-v2-nli huggingface.co is an online trial and call api platform, which integrates e5-small-v2-nli's modeling effects, including api services, and provides a free online trial of e5-small-v2-nli, you can try e5-small-v2-nli online for free by clicking the link below.

agentlans e5-small-v2-nli online free url in huggingface.co:

https://huggingface.co/agentlans/e5-small-v2-nli

e5-small-v2-nli install

e5-small-v2-nli is an open source model from GitHub that offers a free installation service, and any user can find e5-small-v2-nli on GitHub to install. At the same time, huggingface.co provides the effect of e5-small-v2-nli install, users can directly use e5-small-v2-nli installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

e5-small-v2-nli install url in huggingface.co:

https://huggingface.co/agentlans/e5-small-v2-nli

Url of e5-small-v2-nli

e5-small-v2-nli huggingface.co Url

Provider of e5-small-v2-nli huggingface.co

agentlans
ORGANIZATIONS

Other API from agentlans

huggingface.co

Total runs: 49
Run Growth: 21
Growth Rate: 42.86%
Updated:July 18 2025
huggingface.co

Total runs: 10
Run Growth: -6
Growth Rate: -60.00%
Updated:March 25 2025