Mental Health Association of Portland

The Mental Health Association of Portland is an American charitable nonprofit interested in politics, education, advocacy, and research about mental illness in Portland, Oregon. The organization is the state's impartial and independent advocate for persons with mental illness and addiction and acts as fiscal agent for projects defined and done by persons with mental illness or in recovery from addiction.

Described by The Oregonian newspaper as, "Oregon's foremost independent advocate for persons with mental illness and addiction," the all-volunteer organization has exposed routine abuse of persons with mental illness by police, jails, governments and the psychiatric industry. Long-standing members of the board and advisory council include advocates Beckie Child, Kevin Fitts, and Jason Renaud, filmmaker Brian Lindstrom, journalist Jenny Westberg, and disability rights attorney Bob Joondeph.

Their web site is one of the largest archives of mental health history in the English language. The organization is the archivist for family therapy pioneer Carl Whitaker, and produces the Northwest Law & Mental Health Conference and Oregon Housing Conference.

Recent projects include the documentary film Alien Boy: The Life and Death of James Chasse; the peer-run support group Portland Hearing Voices, part of the international Hearing Voices Movement; exposing dangers for patients at the Oregon State Hospital; and political advocacy in response to the police-caused deaths of Brad Morgan, James Chasse, Aaron Campbell, Jackie Collins, Keaton Otis, Lukus Glenn, Dickie Dow, and many others.

Further reading

gollark: It's kind of obsoleted by NVMe disks now.
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)```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.