Monday, November 25, 2019

Some of the slides used by Prof r kept for open access

नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/ ସୁପ୍ରଭାତ/ നമസ്കാരം


Some if the slides which the Sir used while teaching are now available for open access








Many more slides  need to be scanned.
Question papers & master solutions : An e-book can b made
He used to have note books.. they may also be put online


If I keep sending too many mails/ whatsapp messages, it might eat ur time. So u need not reply every time. All such links may be put in a single location (say in a blog/ website) at a later date.

----
विक्रम कुमार
8331926163
8500386163(whatsapp only)



Wednesday, November 13, 2019

100% Machine learning

# -*- coding: utf-8 -*-
"""
Created on Wed Nov 13 10:52:01 2019
%bhayya learnt this from codebasicshub.com
@author: Vikrambhayya

"""
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn import linear_model
df = pd.read_csv("C:\\Users\\Vikrambhayya\\Documents\\ML_b_1.csv")
df
""" matplotlib inline"""
plt.xlabel('Area (sq.ft)')
plt.ylabel('price (Rs)')
plt.scatter(df.Area,df.price)
"""plt.scatter(df.Area,df.price, color='red', marker ='+')"""
reg = linear_model.LinearRegression()
reg.fit(df[['Area']],df.price)

"""reg.coef_"""
"""reg.intercept_"""
d=pd.read_csv("C:/Users/Vikrambhayya/Documents/Areas_to_predict_b.csv")
d.head(3)
p=reg.predict(d)
d['prices_dharalu']=p
d.to_csv("C:\\Users\\Vikrambhayya\\Documents\\anchanA_7_b.csv")

"""d.to_csv("C:\\Users\\Vikrambhayya\\Documents\\anchanA_1_b.csv", index=False)"""



""" 100% working code above """

""" slight modification is done below (modified the 100% working code given above)

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn import linear_model
df = pd.read_csv("C:\\Users\\Vikrambhayya\\Documents\\ML_b_1.csv")
df
plt.xlabel('vaiShAlyamu', fontsize=20)
plt.ylabel('dhara', fontsize=20)
plt.scatter(df.Area,df.price, color='red', marker ='+')
plt.plot(df.Area,reg.predict(df[['Area']]), color='blue')
d=pd.read_csv("C:/Users/Vikrambhayya/Documents/Areas_to_predict_b.csv")
d.head(3)
p=reg.predict(d)
d['prices_dharalu']=p
d.to_csv("C:\\Users\\Vikrambhayya\\Documents\\anchanA_4_b.csv", index=False)

"""# -*- coding: utf-8 -*-
"""
Created on Wed Nov 13 14:18:20 2019

@author:learnt from 'Deep learning part 2 codebasics website:
"""

import numpy as np
import matplotlib.pyplot as plt
""" matplotlib inline"""
import keras
from keras.datasets import mnist

(x_train, y_train), (x_test, y_test) = mnist.load_data()

x_train.shape

x_test.shape

x_train[0]

plt.matshow(x_train[0])

y_train[0]

x_train=x_train/255

x_test=x_test/255

from keras.models import Sequential

from keras.layers import Dense, Activation, Flatten

model=Sequential()

model.add(Flatten(input_shape=[28,28]))

model.add(Dense(200, activation='relu'))

model.add(Dense(10, activation='softmax'))

model.summary()

model.compile(loss="sparse_categorical_crossentropy",optimizer="adam", metrics=["accuracy"])

model.fit(x_train,y_train,epochs=5)

plt.matshow(x_test[0])

x_test.shape

yp = model.predict(x_test)

yp[0]

np.argmax(yp[0])

plt.matshow(x_test[1])

yp[1]

np.argmax(yp[1])

model.evaluate(x_test,y_test)

नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/ ସୁପ୍ରଭାତ/ നമസ്കാരം

learnt from codebasics website
----
विक्रम कुमार
8331926163
8500386163(whatsapp only)



Tuesday, November 12, 2019

ఓ విజయమ్మగారూ! మీ తనయునకు 'దగ్గరివారిగా' మెలగుతూ ఎవరు సలహాలిస్తున్నారో .


नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/ ସୁପ୍ରଭାତ/ നമസ്കാരം


తల్లిభాషకొరకు తనయునకుతలంటి
చెప్పవమ్మనీవు; చెడ్డవారు
చుట్టు చేరి లేని చుట్టరికంబులు
కలిపి చెరచకుండ కాచుకొమ్ము

ఓ విజయమ్మగారూ! మీ తనయునకు 'దగ్గరివారిగా' మెలగుతూ ఎవరు సలహాలిస్తున్నారో .. తెలుగు / మాతృ భాష లో బోధన వల్ల మేలు జరుగుతుందని చెప్పవమ్మా. మీ అబ్బాయి బుద్ధిని తప్పుదారి పట్టిస్తున్న వారినుండి రక్షించుకోగలరు. మద్యపాన నిషేధము అమలు చేసేమంచి ఆలోచన చేసినందుకు ధన్యవాదములు. అలాంటి వ్యక్తి మాతృభాష విషయంలో పెడదారి పట్టాలనుకోవడం ఆందోళనకరం

--

----
विक्रम कुमार
౮౩౩౧౯౨౬౧౬౩
8500386163()


Monday, November 11, 2019

మీ బడి బహుమతులు గెలుచుకోవచ్చిలా...

नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/ ସୁପ୍ରଭାତ/ നമസ്കാരം

మీ బడి బహుమతులు గెలుచుకోవచ్చిలా...

శాస్త్ర విషయాలను మాతృభాషలో సులభ శైలిలో అందరికీ అందుబాటులో వుంచాలన్న ప్రయత్నం

https://archive.org/details/img06766
      సౌర శక్తి  1
https://archive.org/details/img06768      సూర్య కాంతి 2
https://archive.org/details/img06769      వాతావరణం 3
https://archive.org/details/img06809     తోకచుక్కలు 4
https://archive.org/details/img06811      నెప్ట్యూన్ 5
https://archive.org/details/img06812      ప్లూటో 6
https://archive.org/details/img06814      నల్లబిలాలు 7
https://archive.org/details/img06819      బొగ్గు 8
https://archive.org/details/img06820      అగ్నిపర్వతాలు 9
https://archive.org/details/img06821      లేజర్ 10
https://archive.org/details/img06824      అతివాహకత 11
https://archive.org/details/img06825      కాంతివేగం 12
https://archive.org/details/img06827      అంకెలు 13
https://archive.org/details/img06764      విద్యుత్తు 14     
https://archive.org/details/img06815      పరమాణువులు 15


మీ విద్యార్థులు ఏదైనా ఒక పుస్తకం చదివి   తత్సంబంధ అంశాల్లో పరీక్ష వ్రాసి ఉత్తీర్ణత యోగ్యతా / ప్రశంసా పత్రాన్ని & బహుమతులను గెల్చుకోవచ్చు. మంచి ప్రతిభ కనబర్చే పాఠశాలలకు (/విద్యార్థులను సమాయత్త పరిచే ఉపాధ్యాయులకు
కూడా) ప్రోత్సాహకాలు ఉంటాయి.

ఒకే బడి నుంచి కనీసం 30మంది పరీక్ష వ్రాసేట్టైతే... అదే బడిలో పరీక్ష నిర్వహిస్తారు.

more books will be uploaded. Welcome to ppl who wish to participate in this activity (science books in all Indian languages)

భారతి లిపి / వివిధ భారతీయ భాషలు ...
11 Primers uploaded to https://archive.org

పరీక్ష నమూనా

మొత్తం 5 పేపర్లు. * 20 మార్కులు  (నిడివి.. 2 గంటలు)

1. సాధారణ తెలివితేటలు_ మనదేశం గురించి కనీస అవగాహన 

2. భారతి లిపి (మీరు తెలుగు లేక హిందీ ద్వారా సాధన చేయవచ్చు)

3. పైన ఇచ్చిన శాస్త్ర పుస్తకాల్లో మీరు ఎంచుకున్న ఏదో ఒక పుస్తకం

4. గణిత చమత్కారాలు (విక్రమ్ భయ్యా తరగతిలో చెప్పినవి మాత్రమే). అదనంగా కావాలంటే మహీధర నళినీ మోహన్ గారి 'గణితంతో గారడీలు' పుస్తకం చూడవచ్చు. వేదగణితం ప్రాధమిక అంశాలు చదువుకోవచ్చు.

5. మీరు చేసిన శాస్త్ర ప్రయోగం (arvindgupta toys Telugu) ...చిన్నది చాలు. అతి తక్కువ ఖర్చుతో. 
 

పరీక్ష తేదీలు...  2019 డిసెంబర్ 13-19 మధ్య ఎక్కువ మందికి అనువైన రోజు & సమయం

పరీక్ష కు పేరు నమోదు చేసుకునే పద్ధతి...

పాల్గొనే పాఠశాలలు.. తెల్ల కాగితము(ల)పై
క్రమ సంఖ్య/ విద్యార్థి పూర్తి పేరు/ తరగతి / వారు ఎంచుకున్న శాస్త్ర పుస్తకం సంఖ్య
... ఇలా జాబితా తయారు చేసి vikrambhayya@gmail.com కు 30-11-19కల్లా పంపాలి.  మెయిల్ చేయలేనిచో 8500386163కు వాట్సాప్ చేయండి...& 2రోజులలో జవాబు లేనిచో 8331926163కు ఫోన్ చేసి వాట్సాప్ పంపినట్లు తెలుపగలరు. 

ముందస్తుగా జాబితా పంపే పాఠశాలలు కోరే తేదీలో పరీక్ష పెట్టే అవకాశం ఎక్కువ!
---- विक्रम कुमार
గణిత శాస్త్ర ప్రచారక్ 8331926163
8500386163 (whatsapp only)

Monday, November 4, 2019

Fwd: [Announce] Webcast of Arise (Standing Wheelchair) Launch on Tuesday, November 5 at 11.30 am



---------- Forwarded message ---------
From: Sujatha Srinivasan <sujsree@iitm.ac.in>

The event will be webcast live at http://www.chennaistream.com/arise/


If you plan to attend in person, please register (if you haven't already done so), either through the link sent by the Incubation Cell, or by clicking below. Thanks!


------------------------------------------------------

It is my pleasure to invite you to the launch of the first product from the TTK Center for Rehabilitation Research and Device Development (R2D2), IIT Madras! 

The Standing Wheelchair, named Arise, will be launched at IITMRP on Tuesday, November 5th, by the Hon'ble Minister of Social Justice and Empowerment. With support for commercialization from the Wellcome Trust (a UK foundation), the product was designed and developed at R2D2, and will be manufactured and marketed by Phoenix Medical Systems, a medical devices company founded and run by IITM alumnus, Mr. Sashi Kumar.

Please register to enable us to plan for the lunch after the programme. Thanks, and I look forward to your presence at the launch! 
 

 

 Best regards,
Sujatha
*********************************************************
Dr. Sujatha Srinivasan | Professor
TTK Center for Rehabilitation Research and Device Development (R2D2)
II floor, Machine Design Section
Department of Mechanical Engineering
IIT Madras, Chennai 600036
Ph: (9144) 2257 5695/4728
Email: sujsree@iitm.ac.in

 

 

 

 

 

 

 

 

 

   
   
   
   
     

 

 

 

 



For your own safety, I highly recommend reading this email.

Hello, You are in big trouble. However, don't panic right away. Listen to me first, because there is always a way out. You are no...