Semi-Gloss

Semi-Gloss is a now-defunct alternative pop/rock band from the East Village in New York City.

Semi-Gloss
Background information
OriginNew York City
GenresAlternative pop
Indie rock
Lounge
Years active1990s 2000
LabelsDirt Records
Websitesemi-gloss.com
MembersVerena Wiesendanger
Jordy Mokriski
Gregory Graf
Henry Baum
Jason Harmon
Dave Berger

Band history

The band formed in the early 1990s between Jordy Mokriski and Verena Wiesendanger after Mokriski spent a year in Los Angeles writing songs. When he returned to New York City, he and Wiesendanger recorded a four-track demo. The band gained a small following, performing regularly on the Lower East Side at Luna Lounge, and began opening for artists such as Cat Power and Blonde Redhead. They appeared on KCRW's Morning Becomes Eclectic in 1999. They contributed their single "The Sunburn Song" to the Nickelodeon television series The Adventures of Pete & Pete.

Throughout the career of the band, it had been difficult to secure a drummer. Three years after the release of their debut album, the band awaited the release of their second studio album, The Falling Kind on Dirt Records. When the album was delayed, the band members decided to put the band on hiatus.

Though The Falling Kind was eventually released on Dirt Records, the label has since shut down. Copies of albums by the band have since become difficult to find.

Band members

  • Jordy Mokriski - guitar, vocals
  • Verena Wiesendanger - vocals, keyboards, percussion
  • Gregory Graf - bass
  • Henry Baum - drums
  • Jason Harmon - drums
  • Dave Berger - drums

Discography

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.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.