AIML Magazine
AIML Magazine
2022
AIML
DEPARTMENT
EXPLORING A NEW WORLD
Artificial Intelligence and Machine
Learning Department
Vision
Mission
2 FACULTY ARTICLES
3 STUDENT ARTICLES
4 INTERVIEW
5 ACHIEVEMENTS
6 ACKNOWLEDGEMENT
MESSAGES
Dr. Megharani Patil
Incharge Head of
Department - AI&ML
Education is the ability to inculcate discipline, build trust and enhance the
growth of individuals at various levels. With hard work and punctiliousness
laced with knowledge and interaction, one can achieve the great success
that one desires. The vision of our magazine is to impart quality education
in all core disciplines of knowledge by focusing on the empowerment of our
students with overall development.
The topics covered in the magazine not only cover the various domains
being studied but serve as a beacon of inspiration for students to aim for
greater heights. Thus, through TEJAS, we have tried to inculcate the value
of lifelong learning and to thus make our own little contribution towards
the betterment of our society. We hope that the readers grasp all that we
wish to convey through this issue, acknowledging the hard work.
Lastly, we would like to congratulate and thank the committee and the
students, and faculty for their exemplary contribution, valuable time and
effort.
Mrs. Shilpa Mathur
Faculty Incharge
It gives me immense pleasure to present the very first issue of our technical
magazine “TEJAS”. The technical magazine is one of the best platforms for our
students to put forward innovative ideas. This magazine intends to bring out
the creativity and flamboyance of the minds of the students at TCET.
It is the talent and outcome of our students which is reflected through this. In
its very first edition, we have tried to keep it informative, inspiring, and fun.
I applaud all the students for making our department one of its kind and
unique by participating in different national and state-level Hackathons,
Coding Competitions, and many other activities.
I heartily congratulate all the editorial members and faculty members for
helping and working together to publish this magazine. Thank you all for your
precious time and noteworthy efforts.
We all wish that TEJAS stands tall for all the future editions to come.
Mr Anand A. Maha
Faculty Incharge
First of all, I would like to congratulate the editorial team for their effort in
bringing out the first issue of departmental technical magazine Tejas.
Tejas is a cloud of information which provides an opportunity to the
students and staff to express their original thoughts on technical topics.
The magazine plays an instrumental role in providing a technical platform
to the students to express their innovative ideas in Artificial Intelligance
and Machine Learning. This also brings professional attitude, leadership,
ethical and social sensitivity among students.
This first issue of Tejas has come up with topics like technical papers which
is the first step towards research and development. On a concluding note,
I would like to wish you all the best for more such initiatives and future
endeavors.
TEAM
Kushal Singh
(TT,Chief Editor)
The central issue in all of Machine Learning explanatory attributes x1,x2,x3 the
is “how do we extrapolate what has been model y = ax1 +bx2 is ’simpler’ than
learnt from a finite amount of data to all the model y = ax1 +bx2 +cx3 — the
possible inputs ’of the same kind’?”. We build latter requires 3 parameters
models from some training data. However compared to the 2 required for the
the training data is always finite. On the first model.
other hand the model is expected to have The degree of the function, if it is a
learnt ’enough’ about the entire domain from polynomial. Considering regression
where the data points can possibly come. again, the model y = ax2 1 +bx3 2
Clearly in almost all realistic scenarios the would be a more complex model
domain is infinitely large. How do we ensure because it is a polynomial of degree 3.
our model is as good as we think it is based Size of the best-possible
on its performance on the training data, even representation of the model. For
when we apply it on the infinitely many data instance the number of bits in a binary
points that the model has never ’seen’ (been encoding of the model. For instance
trained on)? more complex (messy, too many bits
of precision, large numbers, etc.) the
Occam’s Razor is a predictive model has to coefficients in the model, more
be as simple as possible, but no simpler. complex it is. For example the
Often referred to as the Occam’s Razor, this expression (0.552984567 ∗ x 2 +
is not just a convenience but a fundamental 932.4710001276) could be
tenet of all of machine learning. considered to be more ’complex’ than
say (2x +3x 2 +1), though the latter
To measure the simplicity, we often use its has more terms in it.
complementary notion — that of the The depth or size of a decision tree.
complexity of a model. More complex the
model, less simple it is. There is no universal
definition for the complexity of a model used Intuitively more complex the model, more
in machine learning. However here are a few ’assumptions’ it entails. Occam’s Razor is
typical ways of looking the complexity of a therefore a simple thumb rule — given two
model. models that show similar ’performance’ in
the finite training or test data, we should
Number of parameters required to pick the one that makes fewer assumptions
specify the model completely. For about the data that is yet to be seen. That
example in a simple linear regression for essentially means we need to pick the
the response attribute y on the explan- ’simpler’ of the two models.
learning a ’concept’ using a model and
not really the training data itself. So
ideally the model must be immune to the
specifics of the training data provided
and rather somehow pick out the
essential characteristics of the
phenomenon that is invariant across any
training data set for the problem. So it is
generally better for a model to be not too
sensitive to the specifics of the data set
on which it has been trained. Complex
In general, among the ’best performing’ models tend to change wildly with
models on the available data, we pick the changes in the training data set. Again
one that makes fewest assumptions, using the machine learning jargon simple
equivalently the simplest among them. models have low variance, high bias and
There is a rather deep relationship between complex models have low bias, high
the complexity of a model and its usefulness variance. Here ’variance’ refers to the
in a learning context. We elaborate on this variance in the model and ’bias’ is the
relationship below. deviation from the expected, ideal
behaviour. This phenomenon is often
Simpler models are usually more referred to as the bias-variance
’generic’ and are more widely applicable tradeoff.
(are generalizable).
Simpler models make more errors in the
training set — that’s the price one pays
Explanation:
for greater predictability. Complex
models lead to overfitting — they work
One who understands a few basic principles
very well for the training samples, fail
of a subject (simple model) well, is better
miserably when applied to other test
equipped to solve any new unfamiliar
samples.
problem than someone who has memorized
an entire ’guidebook’ with a number of
The validity of Occam's razor has long been
solved examples (complex model). The latter
debated. Critics of the principle argue that it
student may be able to solve any problem
prioritizes simplicity over accuracy and that,
extremely quickly as long as it looks similar
since one cannot absolutely define
to one of the solved problems in the
“simplicity,” it cannot serve as a sure basis
guidebook. However given a new unfamiliar
of comparison.
problem that doesn’t fall neatly into any of
the ’templates’ in the guidebook, the second
student would be hard pressed to solve it
than the one who understands the basic
concepts well and is able to work his/her
way up from first principles. A model that is
able to accurately ’predict.
Alexa
-Vaibhav Yadav
TT AIML
STUDENT
Conclusion
Future of AI in healthcare
Deep-LEARNING
-Aman Gupta
TT AIML
STUDENT
Ambient Intelligence
Future Scope
References
Agri-TECH
Conclusion
6. Precision Agriculture
-SANSKAR MISHRA
ST AI&ML
STUDENTS
The healthcare industry is the emerging field Digital technology can also ameliorate
of digital innovation and evolution. Increase in provider experience and case care. Simplified
digital technology occupancy has the potential relations through recording, automated
to improve the health care partner and patient patient outreach, and using artificial
experience and also renovate fully safe care intelligence to descry complaint more
delivery. While these advancements made a snappily in individual testing are just a many
efficiencies which benefit both patient and tools helping to lighten the cargo and help
health provider, the methods in which these collapse of our healthcare professionals.
technologies are employed can increase the
scale on their impact. COVID- 19 created an optimal case study that
instanced the occasion technology brought to
Case study of patient through the healthcare uncloak. Organizations saw the use of
system vary extensively. thus, there's no robotization, chatbots, conversational AI and
single approach in perfecting experience. operation program interfaces( API) abused on
Cases pierce the health system for different a coordinated,
types of medical care. They've different large scale for testing, vaccination, and
communication preferences grounded on communication processes. COVID- 19 needed
digital knowledge and or access to digital massive scalability with limited mortal coffers,
bias. While numerous cases who live on their which only technology could sustain across
computers day to day enjoy the speed and the world. literacy were deduced from each
convenience of digital drug, a large portion of associations approach and rigidity t, as well
cases find these tech- enabled relations to be as automated tradition renewals, to name a
cold and impassive. many.These technologies have a two fold
benefit of making the experience more simple
Despite the essential challenges associated for the case, and further cost-effective for
with investing digital technology into current the health system. It was needed as demand
care operations, communicating the “ why ” retrograded and flowed.One of the topmost
can help with change operation. For exemplifications of this principle was the
illustration, creating an experience that finding that virtual visits between cases and
includes robotic process robotization and providers can be an effective and effective
artificial intelligence offers benefits like way to render health care.
expedited completion of attestation, simplified
content confirmation, streamlining bill Artificial intelligence is set to revolutionize
payment.
Technology is a part of a result to a problem but
isn't the result. In order to be successful, it'll be
necessary to keep the case in the center of the
design. Understanding essential complications
will allow us to truly transfigure case and
provider experience and redesign care delivery,
all while lowering the total cost of care. All
laudible pretensions that have been fugitive, on a
larger scale, until now.
-Vibhanshu Pandey
ST AI&ML
STUDENTS
Artificial Intelligence-
Revolutionizing the
Car Designing and
Manufacturing
Industry.
Since cars were introduced in the 19th But recent advancements in the Artificial
century, humans have always been a part of Intelligence and Machine Learning sector are
its manufacturing process. From the initial gradually proving otherwise.
design until the product’s final launch, the
human workforce carried out all the processes Design teams only have a limited amount of
in between. As the years passed, advanced time, money, and resources at their disposal
technology assisted workers in performing and hence cannot prototype more than a few
these processes. And now, in the 21st designs. But there can be a chance that some
century, manual labor is slowly being replaced of the designs that don’t make it to the
by intelligent machines that hardly require any prototyping stage have the potential to
human assistance. But one aspect of car produce a lighter, cheaper, and better
manufacturing that hasn’t completely been product. This is where the concept of
taken over by machines and is still human- Machine Learning comes into the picture.
dependent is Design.
Design teams only have a limited amount of
Designing is a task that has always been done time, money, and resources at their disposal
by hand – be it sketching, moulding clay, or and hence cannot prototype more than a few
digital rendering. The Automotive design designs. But there can be a chance that some
process consists of developing the of the designs that don’t make it to the
appearance, both interior and exterior, along prototyping stage have the potential to
with the mechanical design which includes produce a lighter, cheaper, and better
designing the parts and components of the product. This is where the concept of
vehicle. While designing a vehicle, a designer Machine Learning comes into the picture.
must keep in mind factors such as the basic
geometry, the dimensional requirements, and Machine Learning is a branch of Artificial
the industry standards to name a few. Intelligence (A.I.) that focuses on building and
understanding methods that leverage data to
Even though designers nowadays are assisted improve performance on a specific set of
by machines for purposes like digital tasks. Machine Learning ‘Algorithms’ work by
rendering and prototyping, and access to building a model based on sample data,
more tools, humans cannot be completely known as ‘training’ data that ‘train’ the model
replaced by machines as the creativity and to make predictions and decisions without
emotions present in man-made designs specifically being programmed to do so.
cannot be mimicked by machines.
Machine Learning is a branch of Artificial
Intelligence (A.I.) that focuses on building
and understanding methods that leverage
data to improve performance on a specific
set of tasks. Machine Learning ‘Algorithms’
work by building a model based on sample
data, known as ‘training’ data that ‘train’ the
model to make predictions and decisions
without specifically being programmed to do
so.
The Chassis of the 21C designed by the
In the Automotive Design scenario, the
Czinger A.I.
process works by inputting a very large
A chassis is the base frame of the car.
number of designs (training data) into the
model. The model interprets and analyzes
these designs thereby learning more
information. The end product is a unique
design created by the model.
Decentralized
Before we jump into Web 3.0, Let’s learn about
Web and its history. In a nutshell web is a Instead of large swathes of the internet
common name of WWW(World Wide Web) it is a controlled and owned by centralized
subset of Internet. Before Web 3.0 became a entities, ownership gets distributed
dream of Thousands of Technologist, We had amongst its builders and users.
Web 1.0 and Web 2.0. Yes you are right web
·Permission less.
3.0 is a Phase or evolution of Web. To explain in
short Web 1.0 is an earliest version of Internet, Everyone has equal access to
It was developed by Berners-lee in 1990 at participate in Web3, and no one gets
CERN. According to its founder web 1.0 is read excluded.
only web. Which means web 1.0 allowed us to It has a native payment
search for information and read only with very
little or no interaction with web. It uses cryptocurrency for spending and
sending money online instead of relying
Web 2.0 was a Second stage in development of on the outdated infrastructure of banks
Internet. In next 10-20 years after the launch of and payment processors.
web 2.0 every bland webpages of web 1.0 was Trust less
changed to interactive, social connective and
user-generated content of web 2.0. Web 2.0 It operates using incentives and
allowed user to create their own content that economic mechanisms instead of
can be viewed by millions of people around the relying on trusted third-parties.
globe. The Exponential growth of web 2.0 has
been driven by key innovation such as mobile And many more. Apart from ideas there are
internet access and social Networks. These all some key features of Web 3.0
innovation has enabled the dominance of app
that has expanded online interactivity of user
through apps like Meta, Twitter, Whatsapp and
Google to name a few, We can say that web 2.0
is Read-Write web.
Blockchain-based. Security
Blockchain is the enabler for the creation of Since blockchain technology is trustless by
decentralized applications and services. With default, Web 3.0 remains vulnerable to
blockchain, the data and connection across certain types of attacks: from hard fork and
services are distributed in an approach that is 51% attack to DDoS, DNS hijack and sniping
different than centralized database bots. Regular scams, including targeted ads,
infrastructure. may also work in the new environment.
These security risks generally rely on the
Autonomous and artificially intelligent. human factor, but targeted hacker attacks
More automation overall is a critical feature of could also lead to massive financial losses.
Web 3.0, and that automation will largely be
powered by AI. Development complexity
· The Web 3.0 applications, namely the
Decentralized. Decentralized Apps or DApps, are inherently
As opposed to the first two generations of the complex because of the consensus
web, where governance and applications were approach. They often require the knowledge
largely centralized, Web 3.0 will be of new programming languages, additional
decentralized. Applications and services will be frameworks. A single bug in code could lead
enabled in a distributed approach, where there to the loss of millions of dollars in
isn't a central authority. Cryptocurrency.
·
Cryptocurrency-enabled. Scalability
Cryptocurrency usage is a key feature of Web The scalability element becomes evident
3.0 services and largely replaces the use of fiat once a large blockchain-based app gains
currency. popularity. A rapid increase in the number of
users led to a sharp increase in gas
Till now we had learn and known many thing (transaction fees), The solution could be an
about Web 3.0 and it features. But, at the end of introduction of layer 2 blockchain offloading
the question remains. Why is Web 3.0 important. the transaction element. However, a quick
deployment of these solutions jeopardizes
Importance of Web 3.0:- the decentralization component.
Censorship resistance
The power dynamic between platforms and
content creators is massively imbalanced.
Web 2.0 requires content creators to trust
platforms, that they don’t censor them
On Web3, your data lives on the Blockchain.
When you decide to leave a platform, you can
take your reputation with you
- Moin Syed
Decentralized autonomous organizations ST AIML
(DAOs)
NON TECHNICAL
ARTICLE
STUDENT
This article explains the records, from 1600 BC masses of plastic substances are
to 2008, of substances which are nowadays commercially available, best a handful of
termed ‘plastics’. It includes manufacturing these qualify as commodity thermoplastics in
volumes and contemporary consumption terms of their high quantity and comparatively
styles of five predominant commodityplastics: low fee. Theseplastics and their fractional
polypropylene, polyethylene, polyvinyl consumption on a international basis are
chloride, polystyrene and polyethylene shown below. Low-density polyethylene
terephthalate. The use of components to (LDPE), high density PE (HDPE),
adjust the houses of these plastics and any polypropylene (PP), PVC, PS and polyethylene
related safety, in use, issues for the resulting terephthalate (PET) accountfor about ninetyin
polymeric materials are described. A contrast line with cent of the full demand.
is made with the thermal and barrier
residences of other materials to demonstrate 1.COMMODITY PLASTICS
the versatility of plastics. Societal blessings
for fitness, protection, electricity saving and This organization consists of PP and PE.
material conservation are described, and the Polypropylene became observed in 1954
unique advantages of plastics in society are through Giulio Natta, and commercial
mentioned. Concernsrelating to littering and manufacturing of the resin commenced in
traits in recycling of plastics also are 1957. It is the unmarried most extensively
defined.Finally, we provide predictions for a used thermoplastic globally.It is a completely
number of the capability applications of plastic useful cost- powerful polymer and can be
over the subsequent twenty years. injection moulded, blow-moulded,
thermoformed, blown movie extruded or
Humans have benefited from the use of extruded into a diffusion of products.
polymers considering that about 1600 BC Examples of these encompass bendy barrier
while the historical Mesoamericans first film pouches (inclusive of the biaxially
processed natural rubber into balls, oriented packaging movie used for crisps and
figurinesand bands (Hosleret al. 1999). In the nuts); stackable crates for delivery and
intervening years, guy has relied an increasing garage, caps and closures for containers,
number of on plastics and rubber, first blow-moulded bottles,skinny-walled bins (e.g.
experimenting with herbal polymers,horn, Margarine tubs,yoghurt cups, food trays)
waxes, herbal rubber and resins, till the 19th used within the food industry; and tree
century, whilst the development of modern- shelters, soil sieves, fork handles, mulch
day thermoplastics began. Although actually movies, and glass substitute, window or door
and lustre additives can also be used to
enhance the arrival of a plastic product.
Additives are often the most pricey thing of a
formulation, and the minimum amount had to
obtain a given stage of performance is usually
used. The components are intimately mixed
with the polymer or ‘compounded’ into a
components that is processed into the shape
of the very last product.
Plasticizers are a particular group of additives
that has raised concerns; however, there are
numerous kinds of plasticizer (e.g. Adipates,
water or sewage pipes and geomembranes polymerics, trimellitates,
utilized in building packages.Polypropylenes 1,2-cyclohexanedicarboxylic acid diisononyl
are also used in family items including bowls, ester, citrates, phthalates, and so on.) utilized
kettles, cat litter trays; private items inclusive in plastics. Of those, about 8 differing types
of combs, hair dryers, movie wrap for apparel; are in commonplace use. It is
and in other packaged items. no longer viable to conduct a generalized
threat assessment on phthalates as a
About a half of the 35 million tonnes of PE category of compounds used as plasticizers.
resin produced is used to make plastic film, Some phthalates, e.G. Diisononyl phthalate
observed through13–14% in injection-moulded and diisodecyl phthalate, have been through
and blow-moulded products.North American, complete European Risk Assessments and
westernEuropean and Asian markets each feature a completely easy bill of health in all
consume about 25–30% of the PE film packages, while with other phthalates
produced inclusive of dibutyl phthalate and diethylhexyl
phthalate, threat-reduction measures are
globally. Typical applications of PE are in required(described within the ECB postedRisk
blow-moulded boxes with volumes starting Assessments in the on-lineORATS (2008)
from some millilitres such as detergent databaseto be had from The Phthalates
bottles(2 hundred–500 cm3) and milk jugs Information Centre Europe) to make certain
(0.5–4 l) to hundreds of litres including water that secure use has been recognized.
and chemical barrels. Film packages
encompass provider bags, sandwich bags, As suggested by the futurist Hammond (2007)
freezer bags and adhere wrap, and in his recent book ‘The World in 2030’, the
horticultural uses consist of irrigation pipes, speed of technological development is
glass alternative and subject accelerating exponentially and, for this reason,
liners.Polyethylene is likewisebroadly used as by way of the yr 2030, it will seem as if a
a dielectric insulator in electrical cables. complete century’s worth of progress has
taken area within the first three decades of
2.PLASTICS ADDITIVES the twenty-first century. In many approaches,
lifestyles in 2030 may be unrecognizable in
Plastics are hardly ever utilized by themselves; comparison with life these days. During this
typically, the resins are mixed with different time, plastics will play a extensively extended
substances known as ‘additives’ to beautify positionin our lives.
overall performance. These can also include
inorganic fillers (e.G. Carbon or silica) to
enhance the plastic material, thermal
stabilizers to permit the plastics to be
processed at excessive temperatures,
plasticizers to render the cloth pliable and
flexible, fire retardants to deter ignitionand
burning, and UVstabilizers to
preventdegradation while uncovered to - Banti Pathak
daylight. Colorants, matting marketers, opacifi TT AIML
INTERVIEW
INTERVIEW
Shalu Mishra
Software developer at
persistent system
Q1 How did your fascination with machine learning and deep learning begin?
ANS More than a specific event or experience, my journey has been a gradual
progression of experiences that strengthened my fascination with machine learning
and deep learning. My first academic degree was in mathematics, which continues
to interest me to this day. My Master’s thesis in image processing was perhaps my
first foray into the broader field that enthused me into this research area.
Q2 What were your initial challenges, and how did you address them?
Q3 Did you encounter any data science problems during your research?
ANS I have had to deal with two biggest problems: dataset creation; and finding the
problem one can solve given a certain kind of dataset. Creating a dataset is a skill
by itself and often a longitudinal effort with multiple players, especially when it
pertains to a domain that requires expertise, such as healthcare or aerospace or
agriculture. Knowing what kind of data collection is required to solve a problem is
non-trivial. Discussions with multiple stakeholders and thinking through every detail
of data collection and annotation is paramount. Ethical and privacy implications
must also be kept in mind, and suitable consent and permissions must be taken.
INTERVIEW
Q4 What are your thoughts on the scope of AI research in India compared to the global
scenario?
ANS
The scope of AI in India across different application domains is immense. Plenty of
opportunities to learn AI/ML – especially certificate programs – have emerged over
the last couple of years. Governments, both at central and state levels, have shown
great leadership and enthusiasm in adopting AI, and even AI-based startups have
emerged in diverse application domains. However, considering our population,
there is always scope for more. One of the issues we lag is – innovation in AI.
However, AI as a field is still growing, and making new technological innovations at
the heart of AI itself – be it fundamental or applied – is something we need more of.
There are two aspects to the research scope of AI in India: to use and leverage AI
to develop cutting-edge products and services in various application sectors, or to
make fundamental advancements to the field of AI itself, be it theoretical or applied.
The former is important not merely as an indicator of technological advancement
but more fundamentally for improving the quality of life of every citizen in the
country and helping scale the efforts of enablers to reach out to every corner of the
country.
How can the government and corporations play a role in encouraging more
Q6
students to enter AI fields?
ANS There is always a need to do more. India has talented students across almost every
institution; however, there is a dearth of mentorship opportunities to take their
learning to the next level. Many faculty, though sincere and dedicated, have not
had the access to state-of-the-art topics and practices.
ACHIEVEMENTS
Achievements
AI&ML DEPARTMENT
Jwala Chorasiya
& Rohit Gupta
Winner at SITS,
Pune Hackathon
Prabhat Shukla
TCET TSDW:
Champion Debate-e-
darbaar
Rotaract 2021-22:
Best Debater
Shivam kumar
Chaurasia
INNERVE HACKS '22 WINNER
(National level Hackathon).
4 STAR CODER AT
CODECHEF.
Nidhi Worah
2nd Runner up in
computer vision project
exhibition
Achievements
AI&ML DEPARTMENT
Ankur yadav
Secured 1st place in
“OFF D’ CUFF 2022” -
Sorcerers of Intellect.
Sanskar Mishra
Multicon PPC Second
prize &
SIH participant
ACKNOWLE-
DGEMENT
ACKNOWLEDGEMENT
For the first issue of AI&ML Department Magazine, Team TEJAS has
worked hard to provide you the finest magazine ever. We would like
to extend our sincere gratitude to our management for their constant
support. Also, we would like to thank our Principal, Dr. B.K. Mishra,
Vice-Principal, Dr. Kamal Shah, Dean's, Dr.Sheetal Rathi (Academic)
, Dr. Vinitkumar Jayaprakash Dongre (R&D), and Dr. Lochan Jolly
(Student & Staff Welfare) for their encouragement. We would also like
to thank our Incharge Head of Department Dr. Megharani Patil for the
innovative ideas for the additions made to our magazine, and the
Faculty Incharge for this issue Mrs. Shilpa Mathur and Mr. Anand
Maha for shaping "TEJAS" the first edition of the magazine of AIML
department. Lastly, we would like to convey our heartfelt gratitude to
all the faculty members, students, and all stakeholders for their
valuable input.
-The Editorial Team
TEJAS