Willaim commited on
Commit
c9b0079
·
1 Parent(s): db50d9f

Create new file

Browse files
Files changed (1) hide show
  1. huggingface@transformers:~ +11 -0
huggingface@transformers:~ ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import requests
2
+
3
+ def query(payload, model_id, api_token):
4
+ headers = {"Authorization": f"Bearer {api_token}"}
5
+ API_URL = f"https://api-inference.huggingface.co/models/{model_id}"
6
+ response = requests.post(API_URL, headers=headers, json=payload)
7
+ return response.json()
8
+
9
+ model_id = "distilbert-base-uncased"
10
+ api_token = "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" # get yours at hf.co/settings/tokens
11
+ data = query("The goal of life is [MASK].", model_id, api_token)