GPTrue or False

Display the likelihood that a sample of text was generated by OpenAI's GPT-2 model.

GPTrue or False क्या है?

GPTrue or False Giulio Starace द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the likelihood that a sample of text was generated by OpenAI's GPT-2 model."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GPTrue or False एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        OpenAI's recently released GPT-2 model has revealed itself to be capable of generating incredibly human-like text.

With the rampant spread of fake news and reviews in today's world, such tools may pose a threat to the quality of the information found on the internet.

Luckily, OpenAI also released a detector which is designed to detect whether a given portion of text has been generated by GPT-2 or not.

This extension brings the detector to your browser via a simple browser extension. Simply select a portion of text (at least 50 words) and the extension will determine and display the probability of whether the selected text was generated by GPT-2 or not.

Some notes:

    - The detector itself does not run in your browser. The extension makes HTTP requests to https://huggingface.co/openai-detector where the detector is publicly hosted and processes the response, displaying the results in your browser.
    - Results should be taken with a grain of salt. The detector is designed specifically to work with GPT-2 generated text. Using a different model or finetuning GPT-2 could be enough to avoid detection. In general, the detector is imperfect. Human-generated text may be marked as GPT-2 generated, and vice-versa.                    

एक्सटेंशन की मूल जानकारी

नाम GPTrue or False GPTrue or False
ID bikcfchmnacmfhneafnpfekgfhckplfj
आधिकारिक URL https://chromewebstore.google.com/detail/gptrue-or-false/bikcfchmnacmfhneafnpfekgfhckplfj
विवरण Display the likelihood that a sample of text was generated by OpenAI's GPT-2 model.
फ़ाइल का आकार 708 KB
स्थापना संख्या 1,698
वर्तमान संस्करण 3.0.2
अंतिम अपडेट 2019-11-21
प्रकाशन तिथि 2019-11-21
रेटिंग 2.13/5 कुल 8 रेटिंग्स
डेवलपर Giulio Starace
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/thesofakillers/GPTrue-or-False
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GPTrue or False",
    "version": "3.0.2",
    "description": "Display the likelihood that a sample of text was generated by OpenAI's GPT-2 model.",
    "icons": {
        "16": ".\/images\/icon\/16.png",
        "32": ".\/images\/icon\/32.png",
        "64": ".\/images\/icon\/64.png",
        "128": ".\/images\/icon\/128.png"
    },
    "author": "Giulio Starace",
    "permissions": [
        "https:\/\/huggingface.co\/*",
        "activeTab"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": ".\/images\/icon\/16.png",
            "32": ".\/images\/icon\/32.png",
            "64": ".\/images\/icon\/64.png",
            "128": ".\/images\/icon\/128.png"
        },
        "default_popup": "popup\/index.html",
        "default_title": "GPTrue or False"
    },
    "background": {
        "scripts": [
            ".\/libraries\/browser-polyfill.min.js",
            ".\/background\/background.js"
        ]
    }
}