Centr: Political Bias Detector

Use Deep Learning to detect political bias in your news!

Centr: Political Bias Detector là gì?

Centr: Political Bias Detector là một tiện ích mở rộng Chrome được phát triển bởi http://pulsevoter.com, và tính năng chính của nó là "Use Deep Learning to detect political bias in your news!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Centr: Political Bias Detector

Tải xuống các tệp mở rộng Centr: Political Bias Detector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Centr is a Chrome Extension that allows you to understand the bias of articles you read. This bias is not tied to the site, but to the actual text of the article!

Centr scans the article you are reading and generates a Political Bias score from a variety of statistical and deep learning methods. 🤓

After scanning your article, Centr displays a graph visualizing the bias of the article.  📈

The graph provided has 5 categories along the x-axis:

Left: Strong liberal bias
Left Leaning: Slightly liberal bias
Center: Congrats! The news source you are reading is fairly objective & unbiased. Keep reading!
Right Leaning: Slight conservative bias
Right: Strong conservative bias
Scores represent the article only, not the overall bias of the news source itself.

Centr was also trained to work best on articles related to politics, so don’t read too much into the score on the sports or tech site you may be reading. 📰

Ok, but how does it ACTUALLY work?
The Centr model was trained on over 110,000 articles from over 15 different media sources across the political spectrum. This data was supplemented with additional articles collected via web scraping. This algorithm was used to create a language model and a classifier that sorts articles into the 5 buckets mentioned above.

How do you detect bias? What actually is biased?
We use the wisdom of the crowds - we source popular opinions for sites that are biased in a particular direction, like All Sides and Media Bias Fact Check. Using AI and ML to interpolate between the articles, we tease out bias from the content of the text itself!

There’s no way this can be accurate, right?
No, it really is...

However, like most things, technology can let us down from time-to-time. Centr’s model was trained on a state of the art NVIDIA GPU, producing a score with 97% accuracy.

If you think Centr is blatantly wrong, drop us a line at [email protected] or come visit us in our dorms @ Stanford--we’d be happy to talk 😏

Great, but why do we need Centr?
Today’s polarized political climate and information overload makes it difficult to find objective media sources. ⚖️

Centr cuts the noise and tells you how your news leans. Knowing this might not make you happy, but it's important we all recognize our news consumption biases to have better political dialogue.

Pulse created Centr as a way to show how technology can help combat fake news & media bias. 🎯

Ok, this is dope! How do I share?
We’re glad you like our product! Feel free to share the download link with friends, families & peers.

Who created Centr anyway?
Centr was created by Pulse (pulsevoter.com), a team of Stanford students changing the way citizens connect with government and consume legislative information.

For more information about other Pulse products, visit pulsevoter.com & follow us on social media!
Facebook: https://www.facebook.com/pulsevoter/
Twitter: https://twitter.com/pulsevoter

Thanks for downloading & happy reading!

Pulse is a civic engagement product connecting citizens to their elected representatives.
Centr is a product of Pulse Voter Inc.
July 2018.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Centr: Political Bias Detector Centr: Political Bias Detector
ID bncopbgdiagphiholpbiohhdppdkmdgd
URL Chính Thức https://chrome.google.com/webstore/detail/centr-political-bias-dete/bncopbgdiagphiholpbiohhdppdkmdgd
Mô tả Use Deep Learning to detect political bias in your news!
Kích Thước Tệp 1.47 MB
Số Lần Cài Đặt 173
Phiên Bản Hiện Tại 1.0.0.5
Cập Nhật Lần Cuối 2018-08-10
Ngày Phát Hành 2018-08-10
Đánh Giá 3.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển http://pulsevoter.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.pulsevoter.com
URL Trang Trợ Giúp https://www.pulsevoter.com/centr
URL Trang Chính Sách Bảo Mật https://www.pulsevoter.com/centr/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "23",
    "name": "Centr: Political Bias Detector",
    "short_name": "Centr",
    "description": "Use Deep Learning to detect political bias in your news!",
    "version": "1.0.0.5",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/transparent.png",
        "128": "images\/128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "images\/transparent.png",
        "default_popup": "popup.html",
        "default_title": "Political Bias Detector"
    },
    "web_accessible_resources": [
        "page-styling.css"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "css": [
                "page-styling.css"
            ]
        }
    ]
}