Context Based QnA Using Google’s State Of Art -PreTrained BERT

Why Transformers? The problems with long-existing sequence models are long-range dependencies, vanishing and exploding gradient is hard to resolve even batch gradient descent when network is large and deep, a large amount of training steps needed, as well

By |2023-01-17T20:09:57+05:3013 April 2020|Comments Off on Context Based QnA Using Google’s State Of Art -PreTrained BERT

Recommendation System Using Matrix Factorization

Model Based Collaborative Filtering: Model based collaborative approaches only rely on user-item interactions information and assume a latent model supposed to explain these interactions. For example, matrix factorization algorithms consists in decomposing the huge and sparse user-item interaction

By |2024-01-08T17:02:33+05:3011 April 2020|Comments Off on Recommendation System Using Matrix Factorization

Recommendation System using kNN

A common task of recommender systems is to improve customer experience through personalized recommendations based on prior implicit feedback. These systems passively track different sorts of user behavior, such as purchase history, watching habits and browsing activity, in

By |2024-01-08T17:04:00+05:3011 April 2020|Comments Off on Recommendation System using kNN

Face Recognition Using dlib’s State Of Art ‘face_recognition’

Face Recognition Recognize and manipulate faces from Python or from the command line with the world’s simplest face recognition library. Built using dlib’s state-of-the-art face recognition built with deep learning. The model has an accuracy of 99.38% on the

By |2023-01-17T20:10:20+05:3010 April 2020|Comments Off on Face Recognition Using dlib’s State Of Art ‘face_recognition’

Recommendation System Using Alternating Least Square

Alternating Least Square (ALS) is also a matrix factorization algorithm and it runs itself in a parallel fashion. ALS is implemented in Apache Spark ML and built for a larger-scale collaborative filtering problems. ALS is doing a pretty

By |2023-01-17T20:10:27+05:3010 April 2020|Comments Off on Recommendation System Using Alternating Least Square

Parking Slot Detection using MaskRCNN

Detecting the parking slot occupancy can help us by providing the exact location of the place which is empty for parking and save our time. For this purpose, we can use Image Detection to get the location of

By |2023-01-17T20:10:37+05:3010 April 2020|Comments Off on Parking Slot Detection using MaskRCNN

Android Espresso Testing Framework

As mobile developers, we spend most of our time creating new screens or changing screens that already exist and we need to know that the code works. That is why in our development process we must use tools

By |2023-01-17T20:10:49+05:305 March 2020|Comments Off on Android Espresso Testing Framework

Django Multiple environment in one file

There are some points where we have to maintain settings for multiple environments. Django provides a very useful solution, to maintain multiple settings in a single file. For that you need to install “django-configurations”. pip install django-configurations After

By |2023-01-17T20:10:55+05:3022 February 2020|Comments Off on Django Multiple environment in one file

Dependency Injection

What is dependency injection? To understand dependency injection first we need to know about dependency. Let's take an example.  Class User { Private Profile $profile; Public user(){ $this.profile = new Profile(); } } Here we have a class

By |2023-01-17T20:11:08+05:3017 July 2019|Comments Off on Dependency Injection

NodeJS With MongoDB

This is the article of how to install Node.js with Express.js framework using MongoDB in ubuntu. Here we will use Mongoose.js module and "ejs" that comes with Express.js framework. NodeJS is a platform built on Chrome’s JavaScript runtime

By |2023-01-17T20:11:15+05:3011 July 2019|Comments Off on NodeJS With MongoDB

ES6 Features

This is also known as ECMAScript 6 and ECMAScript 2015. ES6 has some new features. This blog introduced these features. Let & Const There was the only way to declare a variable by using the "var" in Javascript.

By |2023-01-17T20:11:22+05:3011 July 2019|Comments Off on ES6 Features

MySQL Stored Procedures

Recently we were working on a project where we needed to categorize or manipulate a large dataset for further processing. The data needed to be filtered based on certain criteria where we would check the relationship of

By |2023-06-06T15:32:55+05:3011 July 2019|Comments Off on MySQL Stored Procedures

Laravel Framework Specifications

Laravel is one of the highly used, open-source modern web application framework that designs customized web applications quickly and easily. Developers loves Laravel because of performance, features, scalability, huge community, well design documentation, easy learning curve and many

By |2023-01-17T20:11:40+05:3011 June 2019|0 Comments

Integration and Customization of Laravel Authentication

1. For integrating Laravel Authentication, you should run the following artisan  command php artisan make:auth  it will integrate Laravel Default Authentication. If you looked at folder structure following files will generated  Controller Files App -> http -> controller

By |2023-01-17T20:11:57+05:301 May 2019|Comments Off on Integration and Customization of Laravel Authentication

CronJob – Task Scheduling in Laravel

Every application requires some tasks to be run periodically on the server. It could be sending emails, creating reports, creating backups or cleanup databases. To automate these tasks Laravel offers cron jobs scheduling.CronCron is a time-based task scheduler

By |2023-01-17T20:12:17+05:3011 April 2019|Comments Off on CronJob – Task Scheduling in Laravel

Find and fix security vulnerability in wordpress

Wordpress is very popular framework and most site using wordpress for easy to customisation and it’s provide easy to use plugins. Wordpress is freely available and any one can easily build website many website template available in market

By |2023-01-17T20:12:32+05:304 February 2019|Comments Off on Find and fix security vulnerability in wordpress

Service Oriented Architecture

Application with single transactional resource: Architecture: Common Approach most developers used is create a controller and relevant model. All business logics will resides in controller and controller requests to model.       Controller in MVC :  The role of a

By |2023-01-17T20:12:39+05:301 February 2019|Comments Off on Service Oriented Architecture
Go to Top