1995 Bausch & Lomb Championships

The 1995 Bausch & Lomb Championships was a women's tennis tournament played on outdoor clay courts at the Amelia Island Plantation on Amelia Island, Florida in the United States that was part of Tier II of the 1995 WTA Tour. It was the 16th edition of the tournament and was held from April 3 through April 9, 1995. First-seeded Conchita Martínez won the singles title.

1995 Bausch & Lomb Championships
DateApril 3–9
Edition16th
CategoryTier II
SurfaceClay / outdoor
LocationAmelia Island, Florida, U.S.
VenueAmelia Island Plantation
Champions
Singles
Conchita Martínez
Doubles
Amanda Coetzer
Inés Gorrochategui

Finals

Singles

Conchita Martínez defeated Gabriela Sabatini 6–1, 6–4

  • It was Martínez's 2nd title of the year and the 26th of her career.

Doubles

Amanda Coetzer / Inés Gorrochategui defeated Nicole Arendt / Manon Bollegraf 6–2, 3–6, 6–2

  • It was Coetzer's 1st title of the year and the 7th of her career. It was Gorrochategui's 1st title of the year and the 5th of her career.
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.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.