The Missing Postman

The Missing Postman is a two-part comedy drama originally broadcast on BBC1 on the consecutive evenings of 29 and 30 March 1997. Adapted from the Mark Wallington novel, it received the award for Best BBC Comedy Drama at the British Comedy Awards in 1997.

Synopsis

When Dorset postman Clive Peacock is forced into early retirement, the years ahead look bleak. But on his last day in the job, in a moment of unexpected rebellion he makes a decision that will change his life. As he makes his final collection from the postbox in the small seaside town where he lives, he decides to deliver the letters himself, by hand, no matter the destination. Mounting his trusty bicycle, he sets off on what proves to be an odyssey of self-discovery. Pursued by the police and lionised by the media, Clive becomes both a fugitive and a reluctant hero.

Cast

gollark: ·Oh, `bot.run`, right.
gollark: ```pythonfrom transformers import GPT2LMHeadModel, GPT2Tokenizerimport discord.extfrom discord.ext import commandsTOKEN = 'NOT TELLING YOU'bot = commands.Bot(command_prefix='$')@bot.eventasync def on_ready(): print("done!")@bot.command()async def test(ctx, arg): inputs = arg # initialize tokenizer and model from pretrained GPT2 model tokenizer = GPT2Tokenizer.from_pretrained('gpt2') model = GPT2LMHeadModel.from_pretrained('gpt2') outputs = model.generate( inputs, max_length=200, do_sample=True, temperature=1, top_k=50 ) response = (tokenizer.decode(outputs[0], skip_special_tokens=True)) await ctx.send(response)client.run(TOKEN)```
gollark: Yes, you can just use `@bot.event` or something.
gollark: This is probably obvious but you're sending it in a channel the bot sees, right?
gollark: Do you need horrible amounts of computing power for this? I could use this for purposes.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.