Instructions to use rlhn/e5-base-remove-100K with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rlhn/e5-base-remove-100K with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="rlhn/e5-base-remove-100K")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("rlhn/e5-base-remove-100K") model = AutoModel.from_pretrained("rlhn/e5-base-remove-100K") - Notebooks
- Google Colab
- Kaggle
Improve model card
#1
by nielsr HF Staff - opened
This PR enhances the model card by:
- Linking it to the paper: Fixing Data That Hurts Performance: Cascading LLMs to Relabel Hard Negatives for Robust Information Retrieval
- Adding a link to the Github repository: https://github.com/luojunyu/rlhn
- Adding the
pipeline_tagfor feature extraction.