Jaisshree has Published 121 Articles

Generate Captcha using Python

Jaisshree

Jaisshree

Updated on 10-Aug-2023 16:15:44

1K+ Views

CAPTCHA, short for Completely Automated Public Turing test to tell Computers and Humans Apart is an important test used in many websites to check whether the person accessing the website is a human or a bot. This is done mainly for security reasons so that bots cannot intrude on the ... Read More

Find the most Similar Sentence in the file to the Input Sentence | NLP

Jaisshree

Jaisshree

Updated on 10-Aug-2023 15:37:37

274 Views

Natural Language Processing (NLP) allows computers to interpret and analyze human language. Finding the most identical word or sentence to a given input sentence is a prevalent NLP problem. In Python, there are various methods available to find identical sentences. Required Resources To get this done you ... Read More

Find the Geometric mean of a given Pandas Dataframe.

Jaisshree

Jaisshree

Updated on 10-Aug-2023 15:34:34

309 Views

Pandas Dataframe, a python open-source library, is used for storing, deleting, modifying, and updating data in tabular form. It is designed so that I can easily integrate with Python programs for data analysis. It provides various ways of data manipulation techniques and tools for processing data. The mathematical notion ... Read More

Filtering a PySpark dataframe using isin by Exclusion

Jaisshree

Jaisshree

Updated on 10-Aug-2023 15:26:50

492 Views

Python is an object-oriented, dynamically semantic, high-level, interpreted programming language. Rapid Application Development, as well as used as a scripting or glue language to- bring existing components together, find its high-level built-in data structures, coupled with dynamic type and dynamic binding, to be particularly appealing. PySpark Dataframe Data is ... Read More

Filter Pandas DataFrame Based on Index

Jaisshree

Jaisshree

Updated on 10-Aug-2023 15:19:43

200 Views

NumPy, which offers high-performance data manipulation and analysis capabilities, is the foundation for the Python package Pandas. It introduces the Series and DataFrame data structures. Any sort of data can be stored in a series, which is a one-dimensional labeled array. It is comparable to a column in a database ... Read More

FileExtensionValidator – Validate File Extensions in Django

Jaisshree

Jaisshree

Updated on 10-Aug-2023 15:16:22

454 Views

Developers can rapidly and simply design web apps using the high-level Python web framework Django. A complete collection of tools and libraries is provided for creating web applications, and it adheres to the Model-View-Controller (MVC) architectural paradigm. Why is Django used in Python? From modest personal endeavours to ... Read More

Fibonacci Search Visualizer using PyQt5

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:47:35

118 Views

Sorting of lists help us in solving sort huge amount data and various mathematical and logical problems in a very less time. We can find a particular element in a sorted list easily with the help of Fibonacci search method. Here, we will create a Fibonacci Search Visualiser using a ... Read More

Difference between Shallow Copy vs Deep Copy in Pandas Dataframe

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:45:59

138 Views

One of the most useful data structures in Pandas is the Pandas DataFrame which is a 2-Dimensional table-like structure that contains rows and columns to store data. It allows users to store and manipulate the data, very similar to a spreadsheet or SQL table. It also provides a ... Read More

Fernet (Symmetric Encryption) using a Cryptography Module in Python

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:39:28

2K+ Views

Symmetric encoding is a cryptographic technique, where the same key is used for both encryption and decryption of messages from client to server. In order to ensure no sensitive information is leaked while passing the network packets through vulnerable servers, where hackers may use this message for malicious intent, encrypting ... Read More

Difference Between Tensor and Variable in Pytorch

Jaisshree

Jaisshree

Updated on 10-Aug-2023 14:34:00

135 Views

PyTorch is an open-source Python library used for machine learning, computer vision and deep learning. It is an excellent library to build neural networks, conduct complex computations and optimise gradient differentiation. Developed by Facebook's Research Team (FAIR), it gained popularity due to its dynamic computing graphs, allowing it to ... Read More

Previous 1 ... 3 4 5 6 7 ... 13 Next
Advertisements