#import gradio as gr
#gr.Interface.load("models/systash/autotrain-fake_news_fine_tuned_v4-38998102353").launch()
import gradio as gr
iface = gr.Interface.load("models/systash/autotrain-fake_news_fine_tuned_v4-38998102353",
title="Fake News Detector",
description="Enter text to find out if a news article is true so you don't spread false information. The model uses things like the source, the style of writing, and other signs of trustworthiness to give a credibility score to the text that was entered.
The zero (0) label represents real news, and the one (1) label represents fake news.",
article="https://systash.ai/product/fake-news-detector/",
thumbnail="https://systash.ai/wp-content/uploads/2021/03/fake-news-detector.png")
iface.launch()