Eucosmophora echinulata
Eucosmophora echinulata is a moth of the family Gracillariidae. It is known from Paraguay.[1]
Eucosmophora echinulata | |
---|---|
Scientific classification | |
Kingdom: | Animalia |
Phylum: | Arthropoda |
Class: | Insecta |
Order: | Lepidoptera |
Family: | Gracillariidae |
Genus: | Eucosmophora |
Species: | E. echinulata |
Binomial name | |
Eucosmophora echinulata Davis & Wagner, 2005 | |
The length of the forewings is 4.1 mm for females.[2]
The larvae probably feed on a Fabaceae species and probably mine the leaves of their host plant.
Etymology
The specific epithet is derived from the Greek echinulatos (meaning with small spines), in reference to the dense concentration of spines within the corpus bursae.
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.
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.