Benzhydryl compounds

The benzhydryl compounds are a group of organic compounds whose parent structures include diphenylmethane (which is two benzene rings connected by a single methane), with any number of attached substituents, including bridges. This group typically excludes compounds in which either benzene is fused to another ring (bicyclic, tricyclic, polycyclic)[1] or includes a heteroatom, or where the methane connects to three or four benzenes.

Ball-and-stick model of the benzhydryl radical
Ball-and-stick model of diphenylmethane

The benzhydryl radical can be abbreviated CHPh
2
or Bzh.[2]

Carboaromatic

Alcohols

Alkenes

Alkyl(amine)s

Alkoxy compounds

Amines

Other

Heteroaromatic

These species are not strictly benzhydryl-containing but are analogous.

Heteroaromatic rings

Benzenes linked by a non-carbon atom

Benzene and heterocycle linked through a non-carbon

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. Benzhydryl Compounds at the US National Library of Medicine Medical Subject Headings (MeSH)
  2. "Abbreviations and Symbols". European Journal of Biochemistry. 74 (1): 1–6. 1977. doi:10.1111/j.1432-1033.1977.tb11359.x. ISSN 0014-2956. PMC 5185486.
  3. U.S. Patent 4,022,786
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.