Views
No views yet
"C E G" or "Db F Ab") and returns the chord label.1from huggingface_hub import InferenceClient
2
3client = InferenceClient("DS553-Music-Bot/chord_classifier", token="YOUR_HF_TOKEN")
4print(client.post(inputs="C E G"))
5# {'label': 'Cmaj'}