Giovanni Battista Ferrero
Giovanni Battista Ferrero, O.P. (1576–1627) was a Roman Catholic prelate who served as Archbishop of Turin (1626–1627).[1]
Most Reverend Giovanni Battista Ferrero | |
---|---|
Archbishop of Turin | |
Church | Catholic Church |
Archdiocese | Archdiocese of Turin |
In office | 1626–1627 |
Predecessor | Philibert François Milliet de Faverges |
Successor | Antonio Provana |
Personal details | |
Born | 1576 Pinerolo, Italy |
Died | 10 July 1627 (age 51) |
Biography
Giovanni Battista Ferrero was born in Pinerolo, Italy in 1576 and ordained a priest in the Order of Preachers.[2] On 7 September 1626, he was appointed during the papacy of Pope Urban VIII as Archbishop of Turin.[1][2] He served as Archbishop of Turin until his death on 10 July 1627.[1][2]
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
- Gauchat, Patritius (Patrice) (1935). Hierarchia catholica medii et recentioris aevi. Vol. IV. Münster: Libraria Regensbergiana. p. 329. (in Latin)
- Cheney, David M. "Archbishop Giovanni Battista Ferrero, O.P." Catholic-Hierarchy.org. Retrieved June 16, 2018. [self-published]
External links and additional sources
- Cheney, David M. "Archdiocese of Torino {Turin}". Catholic-Hierarchy.org. Retrieved June 16, 2018. (for Chronology of Bishops) [self-published]
- Chow, Gabriel. "Metropolitan Archdiocese of Torino (Italy)". GCatholic.org. Retrieved June 16, 2018. (for Chronology of Bishops) [self-published]
Catholic Church titles | ||
---|---|---|
Preceded by Philibert François Milliet de Faverges |
Archbishop of Turin 1626–1627 |
Succeeded by Antonio Provana |
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.