Securing Spring Applications against Common Security Threats
top of page
Search
Description: 1)Spring Security protects your application from many common security threats right out of the box. You don't have to...
Abhinaw Tripathi
Feb 8, 20202 min read
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...
2 views0 comments
Abhinaw Tripathi
Feb 8, 20201 min read
Regularization - Machine learning
What is Regularization in Machine Learning and AI? Regularization - Regularization in machine learning is a process of introducing...
7 views0 comments
Abhinaw Tripathi
Feb 5, 20201 min read
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...
0 views0 comments
Abhinaw Tripathi
Feb 5, 20202 min read
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...
2 views0 comments
Abhinaw Tripathi
Jan 28, 20201 min read
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...
3 views0 comments
Abhinaw Tripathi
Jan 28, 20201 min read
Data Science, Machine Learning and Artificial Intelligence using Python part-1
Machine Learning and AI with Python
5 views0 comments
Abhinaw Tripathi
Dec 26, 20171 min read
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 ...
20 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
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...
7 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
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: ...
16 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
Nested Functions and Closures
Let's take an example: def get_students(): students=["Abhinaw","Aman"] def get_students_titlecase(): students_titlecase = [] for...
12 views0 comments
Abhinaw Tripathi
Dec 22, 20171 min read
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...
15 views0 comments
Abhinaw Tripathi
Dec 21, 20172 min read
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...
7 views0 comments
Abhinaw Tripathi
Dec 21, 20171 min read
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...
8 views0 comments
Abhinaw Tripathi
Dec 21, 20171 min read
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...
5 views0 comments
Abhinaw Tripathi
Dec 21, 20172 min read
Exceptions in python
Exceptions are event occurred during your program execution.that normally cause your program to stop actually.it usually means some error...
7 views0 comments
Abhinaw Tripathi
Dec 21, 20171 min read
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...
6 views0 comments
Abhinaw Tripathi
Dec 15, 20171 min read
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...
5 views0 comments
bottom of page