Feature Extraction
Adapters
English
Washedashore commited on
Commit
052b56f
·
verified ·
1 Parent(s): cb54d28

Update README.md

Browse files

import requests

API_URL = "https://api-inference.huggingface.co/models/bigcode/starcoder"
headers = {"Authorization": "Bearer hf_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}

def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()

output = query({
"inputs": "Can you please let us know more details about your ",
})

Files changed (1) hide show
  1. README.md +16 -3
README.md CHANGED
@@ -1,3 +1,16 @@
1
- ---
2
- license: bigcode-openrail-m
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: bigcode-openrail-m
3
+ datasets:
4
+ - amphora/QwQ-LongCoT-130K
5
+ - 5CD-AI/LLaVA-CoT-o1-Instruct
6
+ language:
7
+ - en
8
+ metrics:
9
+ - accuracy
10
+ - cer
11
+ base_model:
12
+ - answerdotai/ModernBERT-base
13
+ new_version: meta-llama/Llama-3.3-70B-Instruct
14
+ pipeline_tag: feature-extraction
15
+ library_name: adapter-transformers
16
+ ---