Spaces:
Runtime error
Runtime error
File size: 284 Bytes
5ca4e86 |
1 2 3 4 5 6 7 8 9 10 |
from detoxify import Detoxify
from typing import Dict, Optional, List
class DetoxifyScorer:
def __init__(self):
self.model = Detoxify('original', device='cuda')
def get_scores(self, input_text: str) -> Dict[str, float]:
return self.model.predict(input_text)
|