--- license: apache-2.0 --- A ModernBERT model ([answerdotai/ModernBERT-base](https://huggingface.co/answerdotai/ModernBERT-base)) fine-tuned on NLI and tabular classification datasets using [sentence-transformers](https://sbert.net/). Usage: ```python from sentence_transformers import SentenceTransformer model = SentenceTransformer("clembi/ModernBERT-base-embed") sentences = [ "bi-directional embedding methods are cool", "I like playing Mario Kart", "They all got into the Mupalupux and drove south.", ] embeddings = model.encode(sentences) ```