Marcus Adams (director)
Marcus Adams is a British film director. Adams has produced music videos, advertisements and full-length feature films.
After leaving school, Adams went on to study at the Ballet Rambert school and later found work as a dancer and choreographer.
In 1986, he co-founded the techno-industrial band Meat Beat Manifesto. He designed and choreographed their live shows and also directed their videos.[1] Adams left the band in the early 1990s to focus on directing music videos full-time.[2]
Filmography
- Long Time Dead (with Lukas Haas, Joe Absolom) (2002)
- Octane (with Madeleine Stowe) (2003)
- The Marksman (with Wesley Snipes) (2005)
Videography
- "Stay Another Day" - East 17 (1994)
- "Put Your Hands Up 4 Detroit" - Fedde le Grand (2006)
- "Proper Education" - Eric Prydz vs. Pink Floyd (2007)
- "Perfect (Exceeder)" - Mason vs. Princess Superstar (2007)
- "The Creeps" - Camille Jones vs. Fedde le Grand (2007)
- "I Found U" - Axwell (2007)
- "About You Now" - Sugababes (2007)
- "Rise Up" - Yves Larock (2007)
- "Let Me Think About It" - Ida Corr vs. Fedde Le Grand (2007)
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.
References
- "Metropolis Records: Meat Beat Manifesto". metropolis-records.com. Archived from the original on 2011-06-06. Retrieved 2010-01-25.
- "BBC Wiltshire: Long time directing". bbc.co.uk. Retrieved 2010-01-25.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.