Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

Shuu12121
/
CodeSearch-ModernBERT-Owl-4.1-Small-Fine-tuned

Sentence Similarity
sentence-transformers
Safetensors
modernbert
feature-extraction
dense
Generated from Trainer
dataset_size:58800
loss:MultipleNegativesRankingLoss
text-embeddings-inference
Model card Files Files and versions
xet
Community

Instructions to use Shuu12121/CodeSearch-ModernBERT-Owl-4.1-Small-Fine-tuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use Shuu12121/CodeSearch-ModernBERT-Owl-4.1-Small-Fine-tuned with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("Shuu12121/CodeSearch-ModernBERT-Owl-4.1-Small-Fine-tuned")
    
    sentences = [
        "Returns boolean indicating whether the requestUrl matches against the paths configured.\n\n@param requestedUrl - url requested by user\n@param opts - unless configuration\n@returns {boolean}",
        "def xmoe2_v1_l4k_global_only():\n  \"\"\"\"\"\"\n  hparams = xmoe2_v1_l4k()\n  hparams.decoder_layers = [\n      \"att\" if l == \"local_att\" else l for l in hparams.decoder_layers]\n  return hparams",
        "function matchesPath(requestedUrl, opts) {\n  var paths = !opts.path || Array.isArray(opts.path) ?\n    opts.path : [opts.path];\n\n  if (paths) {\n    return paths.some(function(p) {\n      return (typeof p === 'string' && p === requestedUrl.pathname) ||\n        (p instanceof RegExp && !! p.exec(requestedUrl.pathname));\n    });\n  }\n\n  return false;\n}",
        "public static function factory($accessToken, $currentTeam)\n    {\n        $client = Client::factory($accessToken);\n\n        return new self($client, $currentTeam);\n    }"
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [4, 4]
  • Notebooks
  • Google Colab
  • Kaggle
CodeSearch-ModernBERT-Owl-4.1-Small-Fine-tuned / 1_Pooling
312 Bytes
Ctrl+K
Ctrl+K
  • 1 contributor
History: 1 commit
Shuu12121's picture
Shuu12121
Upload ModernBERT model
c4e1e34 verified about 1 year ago
  • config.json
    312 Bytes
    Upload ModernBERT model about 1 year ago