Jazz Realities
Jazz Realities is an album by Carla Bley, Michael Mantler and Steve Lacy with Kent Carter and Aldo Romano. The album was released on the Fontana label in 1966.[1]
Jazz Realities | ||||
---|---|---|---|---|
Studio album by | ||||
Released | 1966 | |||
Recorded | January 11, 1966 | |||
Genre | Jazz | |||
Length | 38:07 | |||
Label | Fontana | |||
Carla Bley chronology | ||||
| ||||
Michael Mantler chronology | ||||
|
Reception
The Allmusic review awarded the album 3 stars.[2]
Review scores | |
---|---|
Source | Rating |
Allmusic |
Track listing
- All compositions by Carla Bley except as indicated
- "Doctor" - 7:45
- "Oni Puladi" - 5:25
- "J.S." (Michael Mantler, Carla Bley) - 3:35
- "Walking Batterie Woman" (Carla Bley, Michael Mantler) - 6:18
- "Closer" - 5:30
- "Communications No.7" (Michael Mantler) - 9:34
- Recorded in Baarn, Holland on January 11, 1966.
Personnel
- Carla Bley - piano
- Michael Mantler - trumpet
- Steve Lacy - soprano saxophone
- Kent Carter - bass
- Aldo Romano - drums
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
- Carla Bley discography accessed August 13, 2010
- Allmusic Review accessed August 13, 2010
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.