Christian Gaudin (editor)
Christian Gaudin was a French film editor.[1] He worked on more than sixty productions during his career.
Christian Gaudin | |
---|---|
Born | |
Occupation | Film editor |
Years active | 1938–1975 (film) |
Selected filmography
- The Lafarge Case (1938)
- The Murderer Lives at Number 21 (1942)
- Adrien (1943)
- Majestic Hotel Cellars (1945)
- After Love (1948)
- Dilemma of Two Angels (1948)
- The Lovers Of Verona (1949)
- Justice Is Done (1950)
- Rendezvous in Grenada (1951)
- Imperial Violets (1952)
- Spring, Autumn and Love (1955)
- Constance aux enfers (1963)
- Your Turn, Darling (1963)
- Hardi Pardaillan! (1964)
- Marvelous Angelique (1965)
- The Sleeping Car Murders (1965)
- Angelique and the King (1966)
- Untamable Angelique (1967)
- Angelique and the Sultan (1968)
gollark: It's kind of obsoleted by NVMe disks now.
gollark: Does it print `done!` at least?
gollark: I think the issue is that your `bot` is separate from the `client` and never actually started up.
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)```
References
- Waldman p.166
Bibliography
- Waldman, Harry. Maurice Tourneur: The Life and Films. McFarland, 2001.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.