Washedashore
commited on
Update README.md
Browse filesimport 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 ",
})
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 |
+
---
|