--- license: cc0-1.0 --- # Advanced Suicidality Classifier Model ## Introduction Welcome to the Suicidality Detection AI Model! This project aims to provide a machine learning solution for detecting sequences of words indicative of suicidality in text. By utilizing the ELECTRA architecture and fine-tuning on a diverse dataset, we have created a powerful classification model that can distinguish between suicidal and non-suicidal text expressions. ## Training The model was fine-tuned using the ELECTRA architecture on a carefully curated dataset. Our training process involved cleaning and preprocessing various text sources to create a comprehensive training set. The training results indicate promising performance, with metrics including: ## Performance The model's performance on the validation dataset is as follows: - Accuracy: 0.939432 - Recall: 0.937164 - Precision: 0.92822 - F1 Score: 0.932672 These metrics demonstrate the model's ability to accurately classify sequences of text as either indicative of suicidality or non-suicidal. ## Data Sources We collected data from multiple sources to create a rich and diverse training dataset: - [Source 1](https://www.kaggle.com/datasets/thedevastator/c-ssrs-labeled-suicidality-in-500-anonymized-red) - [Source 2](https://www.kaggle.com/datasets/amangoyl/reddit-dataset-for-multi-task-nlp) - [Source 3](https://www.kaggle.com/datasets/imeshsonu/suicideal-phrases) - [Source 4](https://raw.githubusercontent.com/laxmimerit/twitter-suicidal-intention-dataset/master/twitter-suicidal_data.csv) - [Source 5](https://www.kaggle.com/datasets/mohanedmashaly/suicide-notes) - [Source 6](https://www.kaggle.com/datasets/natalialech/suicidal-ideation-on-twitter) The data underwent thorough cleaning and preprocessing before being used for training the model. ## How to Use ### Installation To use the model, you need to install the Transformers library: ```bash pip install transformers ``` ### Using the Model You can utilize the model for text classification using the following code snippets: 1. Using the pipeline approach: ```python from transformers import pipeline classifier = pipeline("sentiment-analysis", model="sentinetyd/suicidality") result = classifier("text to classify") print(result) ``` 2. Using the tokenizer and model programmatically: ```python from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("sentinetyd/suicidality") model = AutoModel.from_pretrained("sentinetyd/suicidality") # Perform tokenization and prediction using the tokenizer and model ``` ## Ethical Considerations Suicidality is a sensitive and serious topic. It's important to exercise caution and consider ethical implications when using this model. Predictions made by the model should be handled with care and used to complement human judgment and intervention. ## Contributions We welcome contributions and feedback from the community to further improve the model's performance, enhance the dataset, and ensure its responsible deployment.