Teresa Rees

Dame Teresa Lesley Rees, DBE, FAcSS, FLSW (born June 1949) is a British social scientist, and a professor at Cardiff University. She specialises in the analysis of gender equality within education, training and labour market policies.[1]

Career

She is professor emerita in the School of Social Sciences at Cardiff University. She served as principal investigator for the Women Adding Value to the Economy (WAVE) project, was a visiting professor at Sweden's GEXcel International Collegium for Advanced Transdisciplinary Gender Studies, and was director of the Leadership Foundation for Higher Education.[2][3]

A former Equal Opportunities commissioner, she received the Welsh Woman of the Year Award for "outstanding contributions to women in Wales", and in 2002 was made a CBE for her work on equal opportunities and higher education.[3] In January 2015, she was made a Dame Commander of the Order of the British Empire (DBE) "for services to social sciences".[4]

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)```

References

  1. "WIR Expert Group Curriculum Vitae". Retrieved 14 July 2016.
  2. Profile, cardiff.ac.uk; accessed 31 December 2015.
  3. Profile, exeter.ac.uk; accessed 31 December 2015.
  4. "Professor Teresa Rees awarded a Damehood for services to Social Sciences". Cardiff University. 8 January 2015. Retrieved 13 June 2015.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.