Statue of George S. Patton (Boston)

A 1953 statue of George S. Patton by James Earle Fraser (sometimes called General George Smith Patton, Jr.) is installed along Boston's Charles River Esplanade, in the U.S. state of Massachusetts.

Statue of George S. Patton
The statue in 2019
ArtistJames Earle Fraser
Year1953 (1953)
MediumBronze sculpture
SubjectGeorge S. Patton

Description and history

The bronze sculpture measures approximately 8 x 3 x 3 ft., and rests on a pink granite base that measures approximately 4 x 10 x 7 ft. It commemorates the general's June 7, 1945 address delivered from the Hatch Memorial Shell before a crowd of 20,000.[1]

The work was surveyed as part of the Smithsonian Institution's "Save Outdoor Sculpture!" program in 1997.[2]

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?

See also

References

  1. Blumenson, Martin (1974), The Patton Papers: 1940–1945, Boston, Massachusetts: Houghton Mifflin, ISBN 0-395-18498-3
  2. "General George Smith Patton, Jr., (sculpture)". Smithsonian Institution. Retrieved October 30, 2019.

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.