Anemodouri
Anemodouri (Greek: Ανεμοδούρι) is a village in the municipal unit Falaisia, southwestern Arcadia, Greece. It is located on the northwestern slopes of mount Tsemperou. It is 3 km northwest of Anavryto, 3 km southeast of Rapsommatis, 4 km west of Paparis and 9 km southeast of Megalopoli.
Anemodouri Ανεμοδούρι | |
---|---|
![]() ![]() Anemodouri | |
Coordinates: 37°21.6′N 22°13′E | |
Country | Greece |
Administrative region | Peloponnese |
Regional unit | Arcadia |
Municipality | Megalopoli |
Municipal unit | Falaisia |
Elevation | 700 m (2,300 ft) |
Community | |
• Population | 68 (2011) |
Time zone | UTC+2 (EET) |
• Summer (DST) | UTC+3 (EEST) |
Postal code | 220 21 |
Area code(s) | 27910 |
Population
Year | Population |
---|---|
1991 | 130 |
2001 | 133 |
2011 | 68 |
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.
See also
References
- "Απογραφή Πληθυσμού - Κατοικιών 2011. ΜΟΝΙΜΟΣ Πληθυσμός" (in Greek). Hellenic Statistical Authority.
External links
- Anemodouri (in Greek)
- GTP - Anemodouri
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.