top of page
Search
Securing Spring Applications against Common Security Threats
Description: 1)Spring Security protects your application from many common security threats right out of the box. You don't have to...

Abhinaw Tripathi
May 1, 20213 min read
30 views
0 comments



Abhinaw Tripathi
Apr 11, 20200 min read
6 views
0 comments



Abhinaw Tripathi
Apr 11, 20200 min read
13 views
0 comments


Machine Learning - K-fold cross validation Python
K-fold cross-validation: In machine learning, we couldn’t fit the model on the training data and can’t say that the model will work...

Abhinaw Tripathi
Feb 8, 20202 min read
2 views
0 comments


Regularization - Machine learning
What is Regularization in Machine Learning and AI? Regularization - Regularization in machine learning is a process of introducing...

Abhinaw Tripathi
Feb 8, 20201 min read
7 views
0 comments


Data Science, Machine Learning and Artificial Intelligence using Python part-3
Overfitting/underfitting We can see that linear function is not sufficient to fit the training samples. This is called underfitting. A...

Abhinaw Tripathi
Feb 5, 20201 min read
0 views
0 comments
Data Science, Machine Learning and Artificial Intelligence using Python part-2
The bias-variance tradeoff In machine learning,bias-variance tradeoff is the problem of simultaneously minimizing two sources of error...

Abhinaw Tripathi
Feb 5, 20202 min read
2 views
0 comments
Data Science, Machine Learning and Artificial Intelligence using Python part-1
What is Machine Learning? Ans: Machine Learning is the science of programming computers so they can learn from data. Machine Learning...

Abhinaw Tripathi
Jan 28, 20201 min read
3 views
0 comments
Data Science, Machine Learning and Artificial Intelligence using Python part-1
Machine Learning and AI with Python

Abhinaw Tripathi
Jan 28, 20201 min read
5 views
0 comments
Lambda Functions in Python
So Lambda Functions are just an anonymous function.they are very simple just saves your space and time.they are useful in case of higher ...

Abhinaw Tripathi
Dec 26, 20171 min read
20 views
0 comments
Generator Function - Yield Python
So Yield is a keyword.first let's take an example. student = [] def read_file(): try: f=open("students.txt","r") for student in...

Abhinaw Tripathi
Dec 22, 20171 min read
7 views
0 comments
Opening,Reading and Writing Python
Let's save our data in a file and read from that file again when we re-open our app. So let's take an example: Let's take an example: ...

Abhinaw Tripathi
Dec 22, 20171 min read
16 views
0 comments
Nested Functions and Closures
Let's take an example: def get_students(): students=["Abhinaw","Aman"] def get_students_titlecase(): students_titlecase = [] for...

Abhinaw Tripathi
Dec 22, 20171 min read
12 views
0 comments
Create a simple Python Student app
Let's create an app where user will provide the student name and Student I'd from the console. eg: student.py students =[] def...

Abhinaw Tripathi
Dec 22, 20171 min read
15 views
0 comments
Functions Arguments in Python
So argument is parameters where you can provide the values to functions and also useful in case you don't have to make variable...

Abhinaw Tripathi
Dec 21, 20172 min read
7 views
0 comments
Functions in Python
Functions A functions is a block organized and re-usable code and use to perform certain action.Pyhthon comes with lot of built in...

Abhinaw Tripathi
Dec 21, 20171 min read
8 views
0 comments
Other Data types in Python
We went over some data types such as integers,strings,floats.ther are more types in python.i will give breife over view then. For...

Abhinaw Tripathi
Dec 21, 20171 min read
5 views
0 comments
Exceptions in python
Exceptions are event occurred during your program execution.that normally cause your program to stop actually.it usually means some error...

Abhinaw Tripathi
Dec 21, 20172 min read
7 views
0 comments
Python Dictionaries
So Dictionary allows me to store key-value pair of any data very easily.if you have used JSON in the past then you will be very familiar...

Abhinaw Tripathi
Dec 21, 20171 min read
6 views
0 comments
while loops in python
So while loop is theoretically same like other programming language.take an example in Python. x =0 while x < 10: print("Count is...

Abhinaw Tripathi
Dec 15, 20171 min read
5 views
0 comments
bottom of page