2006 in Spain

2006
in
Spain

Decades:
  • 1980s
  • 1990s
  • 2000s
  • 2010s
  • 2020s
See also:Other events of 2006
List of years in Spain

Events in the year 2006 in Spain.

Incumbents

Events

  • March 27: Spain's sixth terrestrial television broadcaster, La Sexta, starts programming.[1]
  • December 30: A bombing at the Barajas Airport in Madrid kills two people and injures twenty. ETA claims responsibility.[2]

Births

Deaths

  • March 25: Rocío Durcal, singer and actress
  • June 1: Rocío Jurado, singer and actress
  • November 26: Isaac Gálvez López, cyclist
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?
gollark: Do you need horrible amounts of computing power for this? I could use this for purposes.
gollark: Also that.

See also

References

  1. Gallo, Isabel (27 March 2006). "Emilio Aragón enciende La Sexta". El País. Retrieved 14 July 2014.
  2. Rodríguez, Jorge; Barroso, Javier (31 December 2006). "ETA revienta la tregua con un atentado en Barajas que deja dos desparecidos". El País. Retrieved 14 July 2014.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.