Scripting Language Textbook SL_TextBook (1)
Infosys Material for CC_PY_Basic_1.1
Some content on this page was disabled on September 6, 2023 as a result of a DMCA takedown notice from Appul Pareek. You can learn more about the DMCA here:
Scripting Language Textbook SL_TextBook (1)
Infosys Material for CC_PY_Basic_1.1
Some content on this page was disabled on September 6, 2023 as a result of a DMCA takedown notice from Appul Pareek. You can learn more about the DMCA here:
After Completion my sabbatical period in Bennett university , Met Lot of intellectual people working on several domains but all are trying to implement those problems using Deep Learning,
few of the best research fellows i met are Mohit,(doing phd in bennett), Dr Anand natarajan (Professor in Sri Vidyanikethan),
Mohit sir taught me how to implement the scripting language(python) in real time applications/problems. Few are changing the names of the images, converting bmp images to jpg(any format of image to jpg), moving files to directories with script, later on working with him, i observed that its a matter of solving the problem with the existing solutions which are available in internet, He taught me how to implement cnn in keras, gave few useful links to learn. He supported a lot in plotting the graphs, working with Dgx, comparison of results with ML algorithms although i am not familiar with it.He only made our CNN architecture to classify the forgery images
Dr Anand Natarajan sir had a core knowledge in the field of deep learning,especially neural networks. He is using many neural networks to solve the problems, his domain is to find the breast cancer cell in the tissue marked with the blue/purple color. He showed me how to do segmentation, How to do actual work in the deep learning. One of the best suggestion he gave me is visualize each and every layer of Neural Networks output then you understood where the problem appears and what to do. I am trying on it, since i received that suggestion but due to technical reasons i am unable to cop up to it but i studied few articles about visualization of neural networks output.
After all one month experience, i found out that deep learning is a mixture of Neural Networks, Machine Learning, Image Processing, Natural Language Processing, and finally Calculus, probability, Statistics, this is going on. The best part i found is it is a diversified area of knowledge and applications, In bennett sabbatical one of the research fellow is applying cnn for control of flux in motor.
In deep learning upto my experience,(i hope it may be wrong), Hyper parameters plays a crucial role of our output,finding them is a big task,
following is the workflow of deep learning
Later will add soon…
I started my journey to Bennett university from hyderabad on 10th November,2018. We reached to airport at 8.50am.We started our journey towards bennett university by metro to botanical garden and bus to parichowk.we took a tiffin there, and we started journey to bennett university by cab .Reached to bennett at around 12 o clock. We met hospitality coordinator,we got a single room with sharing bed room no 201.Its a good experience one who must have this experience.All the Best

Extracting data especially from the web is one of the vital tasks of a data scientist. Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies.
For the ones, who get frustrated when working with date-times in python, Pendulum is here for you. It is a Python package to ease datetimes manipulations. It is a drop-in replacement for the Python’s native class
It is seen that most classification algorithms work best when the number of samples in each class is almost the same, i.e. balanced. But real life cases are full of imbalanced datasets which can have a bearing upon the learning phase and the subsequent prediction of machine learning algorithms. Fortunately, this library has been created to address this issue. It is compatible with scikit-learn and is part of scikit-learn-contrib projects.
To Create a Neural Networks use the following steps
Load Data
import numpy
data_path= “Where ur dataset resides in your machine” (we have to take care about \ and /. path/location)
data_set=numpy.loadtxt(data_path,delimiter=”,”) (some time you will get unable to load file, then first load the file using normal file open method)
numpy.random.seed(7)
here we use random.seed to get same random values for all the executions.
see the snapshot below
x=dataset[:,0:8] # here the type of dataset is ndarray