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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display the likelihood that a sample of text was generated by OpenAI's GPT-2 model."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GPTrue or False 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        ]
    }
}