Explore dataset statistics
Explore statistics over split data
import requests
headers = {"Authorization": f"Bearer {API_TOKEN}"}
API_URL = "https://datasets-server.boincai.com/statistics?dataset=glue&config=cola&split=train"
def query():
response = requests.get(API_URL, headers=headers)
return response.json()
data = query()Response structure by data type
class_label
float
int
string_label
string_text
Last updated