Subhash Chopra
Subhash Chopra[1] (born 23 October 1947) is an Indian politician from Delhi. He thrice served as member of Delhi Legislative Assembly represented Kalkaji Assembly constituency. He has served as the President of Delhi Pradesh Congress Committee.[2][3][4]
Position held
Year | Description |
---|---|
1998 - 2003 | Elected to 2nd Delhi Assembly from Kalkaji |
2003 - 2008 | Elected to 3rd Delhi Assembly from Kalkaji (2nd term) |
2008 - 2013 | Elected to 4th Delhi Assembly from Kalkaji (3rd term) |
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.
References
- "Shri Subhash Chopra". delhiassembly.nic.in. Retrieved 23 October 2019.
- Jacob, Jimmy, ed. (23 October 2019). "Polls Closing In, Delhi Congress Finally Gets A Chief In Subhash Chopra". NDTV.com. All India. Retrieved 11 November 2019.
- "Subhash Chopra appointed Delhi Congress president | Delhi News - Times of India". The Times of India. Ist. 23 October 2019. Retrieved 23 October 2019.
- "सुभाष चोपड़ा बने दिल्ली कांग्रेस के नए अध्यक्ष, कीर्ति आजाद को मिला ये पद". Live Hindustan (in Hindi). Retrieved 23 October 2019.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.