SystemNotifications handling in Django REST

To manage notifications we define types of notifications in a constant files(in a dictionary) and create two tables in our database, first is NotificationObjects and second, Notifications like: [crayon-674054fe22e80651810968/]   [crayon-674054fe22e8e353617305/] [crayon-674054fe22e92359657719/] In NotificationObjects table we define entity_type_id

By |2023-01-17T20:09:20+05:3017 December 2020|Comments Off on SystemNotifications handling in Django REST

React Native for Web

It is always better to reuse the existing code. We always strive through the point that we need to have different developers for running our code in different platforms. For ex. A web developer is required to develop

By |2023-01-17T20:09:28+05:3015 December 2020|Comments Off on React Native for Web

Role based embedded reports in data studio

Multiple times we need to build reports to present our data. The Google Data Studio provides a powerful tool to build your own reports with less time and without any coding knowledge. Google Studio depends on Data Source.

By |2023-01-17T20:09:50+05:3023 April 2020|Comments Off on Role based embedded reports in data studio

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
Go to Top