Mabel Wayne

Mabel Wayne (born Mabel Wimpfheimer, July 16, 1890 – June 19, 1978)[1] was an American songwriter,[2] noted as "one of the first women composers to publish a hit song".[3] Her songs included "In a Little Spanish Town", "Ramona", and "It Happened in Monterey"

Biography

She was born in Brooklyn, New York as Mabel Wimpfheimer in 1890 (although she later preferred to use the dates 1899 and 1904), and studied piano in Switzerland and then at the New York School of Music.

Wayne performed as a concert pianist and singer, and as a dancer in vaudeville.[3] In the 1920s and 1930s she collaborated with several lyricists including L. Wolfe Gilbert, Sam M. Lewis and Joe Young. Wayne was particularly noted for her Latin-tinged songs. She wrote for movies including King of Jazz, and later for British films, including Dance Band (1935).[4] She also made recordings, singing and playing piano, in the 1930s.[1]

After a short-lived marriage in the 1910s, Mabel Wayne married Nick Campbell, a music publisher based in New York, on March 15, 1948 in the Little Church of the West, located in Reno, Nevada. Lanny Ross and his wife served as the best man and matron of honor.[5]

Mabel Wayne was inducted to the Songwriters Hall of Fame in 1972.[3] She died at Glen Cove, Long Island, in 1978 at the age of 87.

Selected works

[1][3]

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)```
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?

References

  1. Mabel Wayne at Allmusic.com
  2. "Gifted Girls Who Write Songs" (January 18, 1929) The News-Palladium p. 24, via Newspapers.com.
  3. Mabel Wayne at the Songwriters Hall of Fame
  4. Mabel Wayne at IMDb
  5. "Ramona Composer Is Wed," New York Times (March 16, 1948).


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