Spaces:
Sleeping
Sleeping
| import torch | |
| from transformers import AutoTokenizer, AutoModelForSequenceClassification | |
| import streamlit as st | |
| import pandas as pd | |
| model_checkpoint = 'cointegrated/rubert-tiny-toxicity' | |
| tokenizer = AutoTokenizer.from_pretrained(model_checkpoint) | |
| model = AutoModelForSequenceClassification.from_pretrained(model_checkpoint) | |
| if torch.cuda.is_available(): | |
| model.cuda() | |
| def text2toxicity(text, aggregate=False): | |
| """ Calculate toxicity of a text (if aggregate=True) or a vector of toxicity aspects (if aggregate=False)""" | |
| with torch.no_grad(): | |
| inputs = tokenizer(text, return_tensors='pt', truncation=True, padding=True).to(model.device) | |
| proba = torch.sigmoid(model(**inputs).logits).cpu().numpy() | |
| if isinstance(text, str): | |
| proba = proba[0] | |
| if aggregate: | |
| return 1 - proba.T[0] * (1 - proba.T[-1]) | |
| return proba | |
| st.title("Определение уровня токсичности") | |
| # Ввод предложения от пользователя | |
| input_text = st.text_input("Введите предложение:", "") | |
| # Обработка входных данных через модель | |
| if input_text: | |
| # Вывод результатов | |
| my_dict = { | |
| 'Не токсичный': (text2toxicity(input_text, False))[0], | |
| 'Оскорбление': (text2toxicity(input_text, False))[1], | |
| 'Непристойность': (text2toxicity(input_text, False))[2], | |
| 'Угроза': (text2toxicity(input_text, False))[3], | |
| 'Опасный': (text2toxicity(input_text, False))[4] | |
| } | |
| # my_dict['index'] = 'your_index_value' | |
| # st.write({text2toxicity(input_text, False)[0]: 'non-toxic'}) | |
| df = pd.DataFrame(my_dict, index=['вероятности']) | |
| st.dataframe(df) | |
| st.write(f'Вероятность токсичного комментария {text2toxicity(input_text, True)}') | |