Instructions to use VinMir/GordonAI-fact_checking with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use VinMir/GordonAI-fact_checking with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="VinMir/GordonAI-fact_checking")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("VinMir/GordonAI-fact_checking", dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,720 Bytes
d101c81 ab7897d d101c81 43fe6d5 d101c81 556239d d101c81 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | ---
license: mit
language:
- en
- it
- es
base_model:
- microsoft/mdeberta-v3-base
pipeline_tag: text-classification
metrics:
- accuracy
library_name: transformers
tags:
- fact-checking
- text-classification
---
# GordonAI
GordonAI is an AI package designed for sentiment analysis, emotion detection, and fact-checking classification. The models are pre-trained on three languages: **Italian**, **English**, and **Spanish**.
## Features
This model has been trained specifically for fact-checking tasks. It classifies text into one of four categories: **Disinformation**, **Hoax**, **FakeNews**, or **TrueNews**.
Based on the pre-trained mdeberta-v3-base model from Microsoft, it has been fine-tuned on a specialized fact-checking dataset to accurately identify whether a statement is true or false, and to detect misleading or fabricated information.
## Usage
You can use the `GordonAI` to classify texts helping to identify whether a statement is reliable or misleading.
```python
from transformers import pipeline
# Load the pipeline for text classification
classifier = pipeline("text-classification", model="VinMir/GordonAI-fact_checking")
# Use the model to classify text
result = classifier("The Earth is flat.")
print(result)
```
## Requirements
Python >= 3.9
transformers
torch
You can install the dependencies using:
```bash
pip install transformers torch
```
## Limitations and bias
Please consult the original DeBERTa paper and literature on different NLI datasets for potential biases.
## Acknowledgments
This package is part of the work for my doctoral thesis. I would like to thank **NeoData** and **Università di Catania** for their valuable contributions to the development of this project. |