2012 The Hague Open
The 2012 The Hague Open was a professional tennis tournament played on clay courts. It was the 20th edition of the tournament which was part of the 2012 ATP Challenger Tour and the Tretorn SERIE+. It took place in Scheveningen, Netherlands between 9 and 15 July 2012.
2012 The Hague Open | |
---|---|
Date | 9 – 15 July |
Edition | 20th |
Surface | Clay |
Location | Scheveningen, Netherlands |
Champions | |
Singles | |
![]() | |
Doubles | |
![]() ![]() |
Singles main draw entrants
Seeds
Country | Player | Rank1 | Seed |
---|---|---|---|
![]() |
Jerzy Janowicz | 136 | 1 |
![]() |
Teymuraz Gabashvili | 147 | 2 |
![]() |
Augustin Gensse | 150 | 3 |
![]() |
Iñigo Cervantes Huegun | 152 | 4 |
![]() |
Martín Alund | 158 | 5 |
![]() |
Kenny de Schepper | 160 | 6 |
![]() |
Máximo González | 170 | 7 |
![]() |
Jan Mertl | 174 | 8 |
- 1 Rankings are as of June 25, 2012.
Other entrants
The following players received wildcards into the singles main draw:
Kimmer Coppejans Thiemo de Bakker Mark de Jong Matwé Middelkoop
The following players received entry from the qualifying draw:
Champions
Singles
Jerzy Janowicz def. Matwé Middelkoop, 6–2, 6–2
Doubles
Antal van der Duim / Boy Westerhof def. Rameez Junaid / Simon Stadler, 6–4, 5–7, [10–7]
gollark: Does it print `done!` at least?
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.
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.