Spaces:
Runtime error
Runtime error
File size: 486 Bytes
cd87e9f 6886c22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#imported from https://github.com/m3hrdadfi/soxan to implement Wav2Vec2 for speech classification
from dataclasses import dataclass
from typing import Optional, Tuple
import torch
from transformers.file_utils import ModelOutput
@dataclass
class SpeechClassifierOutput(ModelOutput):
loss: Optional[torch.FloatTensor] = None
logits: torch.FloatTensor = None
hidden_states: Optional[Tuple[torch.FloatTensor]] = None
attentions: Optional[Tuple[torch.FloatTensor]] = None
|