Instructions to use simonschoe/call2vec with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- fastText
How to use simonschoe/call2vec with fastText:
from huggingface_hub import hf_hub_download import fasttext model = fasttext.load_model(hf_hub_download("simonschoe/call2vec", "model.bin")) - Notebooks
- Google Colab
- Kaggle
Commit ·
e563118
1
Parent(s): 7d259e7
update api reference
Browse files
README.md
CHANGED
|
@@ -44,7 +44,7 @@ import requests
|
|
| 44 |
API_TOKEN = <TOKEN>
|
| 45 |
|
| 46 |
headers = {"Authorization": f"Bearer {API_TOKEN}"}
|
| 47 |
-
API_URL = "https://api-inference.huggingface.co/models/call2vec"
|
| 48 |
|
| 49 |
def query(payload):
|
| 50 |
data = json.dumps(payload)
|
|
|
|
| 44 |
API_TOKEN = <TOKEN>
|
| 45 |
|
| 46 |
headers = {"Authorization": f"Bearer {API_TOKEN}"}
|
| 47 |
+
API_URL = "https://api-inference.huggingface.co/models/simonschoe/call2vec"
|
| 48 |
|
| 49 |
def query(payload):
|
| 50 |
data = json.dumps(payload)
|