• Stars
    star
    1
  • Language
    Python
  • Created about 5 years ago
  • Updated about 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Driver drowsiness detection is a car safety technology which helps prevent accidents caused by the driver getting drowsy. Various studies have suggested that around 20% of all road accidents are fatigue-related, up to 50% on certain roads

More Repositories

1

AI-Cheatsheets-for-basics

A cheat sheet (also cheatsheet) or crib sheet is a concise set of notes used for quick reference. Cheat sheets are so named because they may be used by students without the instructor's knowledge to cheat on a test.
20
star
2

Extractive-Text-Summerization

Summarization systems often have additional evidence they can utilize in order to specify the most important topics of document(s). For example, when summarizing blogs, there are discussions or comments coming after the blog post that are good sources of information to determine which parts of the blog are critical and interesting. In scientific paper summarization, there is a considerable amount of information such as cited papers and conference information which can be leveraged to identify important sentences in the original paper. How text summarization works In general there are two types of summarization, abstractive and extractive summarization. Abstractive Summarization: Abstractive methods select words based on semantic understanding, even those words did not appear in the source documents. It aims at producing important material in a new way. They interpret and examine the text using advanced natural language techniques in order to generate a new shorter text that conveys the most critical information from the original text. It can be correlated to the way human reads a text article or blog post and then summarizes in their own word. Input document โ†’ understand context โ†’ semantics โ†’ create own summary. 2. Extractive Summarization: Extractive methods attempt to summarize articles by selecting a subset of words that retain the most important points. This approach weights the important part of sentences and uses the same to form the summary. Different algorithm and techniques are used to define weights for the sentences and further rank them based on importance and similarity among each other. Input document โ†’ sentences similarity โ†’ weight sentences โ†’ select sentences with higher rank. The limited study is available for abstractive summarization as it requires a deeper understanding of the text as compared to the extractive approach. Purely extractive summaries often times give better results compared to automatic abstractive summaries. This is because of the fact that abstractive summarization methods cope with problems such as semantic representation, inference and natural language generation which is relatively harder than data-driven approaches such as sentence extraction. There are many techniques available to generate extractive summarization. To keep it simple, I will be using an unsupervised learning approach to find the sentences similarity and rank them. One benefit of this will be, you donโ€™t need to train and build a model prior start using it for your project. Itโ€™s good to understand Cosine similarity to make the best use of code you are going to see. Cosine similarity is a measure of similarity between two non-zero vectors of an inner product space that measures the cosine of the angle between them. Since we will be representing our sentences as the bunch of vectors, we can use it to find the similarity among sentences. Its measures cosine of the angle between vectors. Angle will be 0 if sentences are similar. All good till now..? Hope so :) Next, Below is our code flow to generate summarize text:- Input article โ†’ split into sentences โ†’ remove stop words โ†’ build a similarity matrix โ†’ generate rank based on matrix โ†’ pick top N sentences for summary.
Jupyter Notebook
15
star
3

Machine-Learning-all-Algorithms-Python

Here, I will be uploading all the algorithms and codes of machine learning with dataset in different folders and will give all the basic information about them so that everyone can practice and learn machine learning by their own and can implement the codes shortly
Jupyter Notebook
3
star
4

100-days-of-Cpp

C++
1
star
5

free-Spotify

Making Spotify Ads free with an amount ofย $0
Python
1
star
6

COVID-19-Xray-Detection

Detecting COVID-19 in X-ray images with Keras, TensorFlow, and Deep Learning
Jupyter Notebook
1
star
7

Apple-Stock-Prediction-using-LSTM

Stock Prices Prediction is a very interesting area of Machine Learning. Personally, I always have interest in the applications of this field. Machine Learning became very useful to the Stock Market Forecasting over the last years, and today, many investment companies are using Machine Learning to make decisions in the Stock Market.
Jupyter Notebook
1
star
8

Microsoft-Virtual-Internship

As the cornerstone of company, Microsoft Engineers always aspire to be the best in the industry. Whether coding, building, hacking, designing, or testing, they consistently put their passion and energy into delivering world-class products that will delight and empower Microsoft customers and partners
1
star