Life Like (Joan of Arc album)
Life Like is the fourteenth full-length studio album by Joan of Arc released in 2011 on Polyvinyl Records. It is also the first Joan of Arc album to feature former Cap'n Jazz guitarist, Victor Villarreal.[2][3][4][5]
Life Like | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 10 May 2011 | |||
Genre | Indie rock | |||
Label | Polyvinyl | |||
Joan of Arc chronology | ||||
|
Review scores | |
---|---|
Source | Rating |
Allmusic | Life Like at AllMusic |
Rockfeedback |
Track listing
- "I Saw the Messed Binds of My Generation" - 10:43
- "Love Life" - 3:03
- "Like Minded" - 5:07
- "Life Force" - 1:13
- "Night Life Style" - 3:55
- "Howdy Pardoner" - 4:10
- "Still Life" - 4:36
- "Deep State" - 5:18
- "After Life" - 2:47
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.
gollark: Also that.
References
- "Rockfeedback review".
- "Polyvinyl Record Co. - Joan of Arc - Life Like". Polyvinylrecords.com. 2011-05-10. Retrieved 2012-02-28.
- "Joan of Arc: Life Like". PopMatters. 2011-06-01. Retrieved 2018-05-30.
- "Album Review: Joan of Arc - Life Like". DrownedInSound. Retrieved 2018-05-30.
- "Joan Of Arc - Life Like". Discogs. Retrieved 2018-05-30.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.