Coder Social home page Coder Social logo

gpt2's People

Contributors

lutzroeder avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

gpt2's Issues

Funny model

It generated
"The Eiffel tower is"
The Eiffel tower is the tallest building in Britain. It is the tallest structure in the world. It had three houses in it before the war, but it was demolished by the ozzys in 1946. In 1992, it was restored but, due to the war, it was

ONNX example

Export

torch.onnx.export(model, context, 'gpt2.onnx',
    input_names=['input', 'temperature', 'top_k'],
    output_names=['output'],
    dynamic_axes={'input': {0: 'batch', 1: 'tokens'}, 'output': {0: 'batch'}})

Inference

import sys
import onnxruntime
import tiktoken
prompt = 'The Eiffel tower is in' if len(sys.argv) <= 1 else sys.argv[1]
encoding = tiktoken.get_encoding('gpt2')
context = encoding.encode(prompt, allowed_special={'<|endoftext|>'})
session = onnxruntime.InferenceSession('gpt2.onnx')
print(prompt, end='', flush=True)
for _ in range(50): # max_tokens
    outputs = session.run(['output'], {'input': [context], 'temperature': [0.7], 'top_k': [40]})
    y = outputs[0][0]
    print(encoding.decode(y), end='', flush=True)
    context.extend(y)
print('')

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.