Spaces:
Sleeping
Sleeping
File size: 487 Bytes
a8467fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import requests
import json
import os
from pprint import pprint
HF_TOKEN = os.getenv("HF_TOKEN")
API_URL = "https://api-inference.huggingface.co/models/rizvandwiki/gender-classification-2"
headers = {"Authorization": "Bearer "+HF_TOKEN}
def get_gender(filename):
with open(filename, "rb") as f:
data = f.read()
response = requests.post(API_URL, headers=headers, data=data)
gender_prediction = response.json()
return gender_prediction[0]['label']
|