Audio Classification
Transformers
Safetensors
audio-spectrogram-transformer
bee
beehive
ast
environmental-audio
Instructions to use troyskie/Beewatch-hive-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use troyskie/Beewatch-hive-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="troyskie/Beewatch-hive-classifier")# Load model directly from transformers import AutoFeatureExtractor, AutoModelForAudioClassification extractor = AutoFeatureExtractor.from_pretrained("troyskie/Beewatch-hive-classifier") model = AutoModelForAudioClassification.from_pretrained("troyskie/Beewatch-hive-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| { | |
| "architectures": [ | |
| "ASTForAudioClassification" | |
| ], | |
| "attention_probs_dropout_prob": 0.0, | |
| "dtype": "float32", | |
| "frequency_stride": 10, | |
| "hidden_act": "gelu", | |
| "hidden_dropout_prob": 0.0, | |
| "hidden_size": 768, | |
| "id2label": { | |
| "0": "healthy", | |
| "1": "warning", | |
| "2": "low_activity" | |
| }, | |
| "initializer_range": 0.02, | |
| "intermediate_size": 3072, | |
| "label2id": { | |
| "healthy": 0, | |
| "low_activity": 2, | |
| "warning": 1 | |
| }, | |
| "layer_norm_eps": 1e-12, | |
| "max_length": 1024, | |
| "model_type": "audio-spectrogram-transformer", | |
| "num_attention_heads": 12, | |
| "num_hidden_layers": 12, | |
| "num_mel_bins": 128, | |
| "patch_size": 16, | |
| "qkv_bias": true, | |
| "time_stride": 10, | |
| "transformers_version": "5.13.1" | |
| } | |