Found 229 repositories(showing 30)
Aryia-Behroziuan
An ANN is a model based on a collection of connected units or nodes called "artificial neurons", which loosely model the neurons in a biological brain. Each connection, like the synapses in a biological brain, can transmit information, a "signal", from one artificial neuron to another. An artificial neuron that receives a signal can process it and then signal additional artificial neurons connected to it. In common ANN implementations, the signal at a connection between artificial neurons is a real number, and the output of each artificial neuron is computed by some non-linear function of the sum of its inputs. The connections between artificial neurons are called "edges". Artificial neurons and edges typically have a weight that adjusts as learning proceeds. The weight increases or decreases the strength of the signal at a connection. Artificial neurons may have a threshold such that the signal is only sent if the aggregate signal crosses that threshold. Typically, artificial neurons are aggregated into layers. Different layers may perform different kinds of transformations on their inputs. Signals travel from the first layer (the input layer) to the last layer (the output layer), possibly after traversing the layers multiple times. The original goal of the ANN approach was to solve problems in the same way that a human brain would. However, over time, attention moved to performing specific tasks, leading to deviations from biology. Artificial neural networks have been used on a variety of tasks, including computer vision, speech recognition, machine translation, social network filtering, playing board and video games and medical diagnosis. Deep learning consists of multiple hidden layers in an artificial neural network. This approach tries to model the way the human brain processes light and sound into vision and hearing. Some successful applications of deep learning are computer vision and speech recognition.[68] Decision trees Main article: Decision tree learning Decision tree learning uses a decision tree as a predictive model to go from observations about an item (represented in the branches) to conclusions about the item's target value (represented in the leaves). It is one of the predictive modeling approaches used in statistics, data mining, and machine learning. Tree models where the target variable can take a discrete set of values are called classification trees; in these tree structures, leaves represent class labels and branches represent conjunctions of features that lead to those class labels. Decision trees where the target variable can take continuous values (typically real numbers) are called regression trees. In decision analysis, a decision tree can be used to visually and explicitly represent decisions and decision making. In data mining, a decision tree describes data, but the resulting classification tree can be an input for decision making. Support vector machines Main article: Support vector machines Support vector machines (SVMs), also known as support vector networks, are a set of related supervised learning methods used for classification and regression. Given a set of training examples, each marked as belonging to one of two categories, an SVM training algorithm builds a model that predicts whether a new example falls into one category or the other.[69] An SVM training algorithm is a non-probabilistic, binary, linear classifier, although methods such as Platt scaling exist to use SVM in a probabilistic classification setting. In addition to performing linear classification, SVMs can efficiently perform a non-linear classification using what is called the kernel trick, implicitly mapping their inputs into high-dimensional feature spaces. Illustration of linear regression on a data set. Regression analysis Main article: Regression analysis Regression analysis encompasses a large variety of statistical methods to estimate the relationship between input variables and their associated features. Its most common form is linear regression, where a single line is drawn to best fit the given data according to a mathematical criterion such as ordinary least squares. The latter is often extended by regularization (mathematics) methods to mitigate overfitting and bias, as in ridge regression. When dealing with non-linear problems, go-to models include polynomial regression (for example, used for trendline fitting in Microsoft Excel[70]), logistic regression (often used in statistical classification) or even kernel regression, which introduces non-linearity by taking advantage of the kernel trick to implicitly map input variables to higher-dimensional space. Bayesian networks Main article: Bayesian network A simple Bayesian network. Rain influences whether the sprinkler is activated, and both rain and the sprinkler influence whether the grass is wet. A Bayesian network, belief network, or directed acyclic graphical model is a probabilistic graphical model that represents a set of random variables and their conditional independence with a directed acyclic graph (DAG). For example, a Bayesian network could represent the probabilistic relationships between diseases and symptoms. Given symptoms, the network can be used to compute the probabilities of the presence of various diseases. Efficient algorithms exist that perform inference and learning. Bayesian networks that model sequences of variables, like speech signals or protein sequences, are called dynamic Bayesian networks. Generalizations of Bayesian networks that can represent and solve decision problems under uncertainty are called influence diagrams. Genetic algorithms Main article: Genetic algorithm A genetic algorithm (GA) is a search algorithm and heuristic technique that mimics the process of natural selection, using methods such as mutation and crossover to generate new genotypes in the hope of finding good solutions to a given problem. In machine learning, genetic algorithms were used in the 1980s and 1990s.[71][72] Conversely, machine learning techniques have been used to improve the performance of genetic and evolutionary algorithms.[73] Training models Usually, machine learning models require a lot of data in order for them to perform well. Usually, when training a machine learning model, one needs to collect a large, representative sample of data from a training set. Data from the training set can be as varied as a corpus of text, a collection of images, and data collected from individual users of a service. Overfitting is something to watch out for when training a machine learning model. Federated learning Main article: Federated learning Federated learning is an adapted form of distributed artificial intelligence to training machine learning models that decentralizes the training process, allowing for users' privacy to be maintained by not needing to send their data to a centralized server. This also increases efficiency by decentralizing the training process to many devices. For example, Gboard uses federated machine learning to train search query prediction models on users' mobile phones without having to send individual searches back to Google.[74] Applications There are many applications for machine learning, including: Agriculture Anatomy Adaptive websites Affective computing Banking Bioinformatics Brain–machine interfaces Cheminformatics Citizen science Computer networks Computer vision Credit-card fraud detection Data quality DNA sequence classification Economics Financial market analysis[75] General game playing Handwriting recognition Information retrieval Insurance Internet fraud detection Linguistics Machine learning control Machine perception Machine translation Marketing Medical diagnosis Natural language processing Natural language understanding Online advertising Optimization Recommender systems Robot locomotion Search engines Sentiment analysis Sequence mining Software engineering Speech recognition Structural health monitoring Syntactic pattern recognition Telecommunication Theorem proving Time series forecasting User behavior analytics In 2006, the media-services provider Netflix held the first "Netflix Prize" competition to find a program to better predict user preferences and improve the accuracy of its existing Cinematch movie recommendation algorithm by at least 10%. A joint team made up of researchers from AT&T Labs-Research in collaboration with the teams Big Chaos and Pragmatic Theory built an ensemble model to win the Grand Prize in 2009 for $1 million.[76] Shortly after the prize was awarded, Netflix realized that viewers' ratings were not the best indicators of their viewing patterns ("everything is a recommendation") and they changed their recommendation engine accordingly.[77] In 2010 The Wall Street Journal wrote about the firm Rebellion Research and their use of machine learning to predict the financial crisis.[78] In 2012, co-founder of Sun Microsystems, Vinod Khosla, predicted that 80% of medical doctors' jobs would be lost in the next two decades to automated machine learning medical diagnostic software.[79] In 2014, it was reported that a machine learning algorithm had been applied in the field of art history to study fine art paintings and that it may have revealed previously unrecognized influences among artists.[80] In 2019 Springer Nature published the first research book created using machine learning.[81] Limitations Although machine learning has been transformative in some fields, machine-learning programs often fail to deliver expected results.[82][83][84] Reasons for this are numerous: lack of (suitable) data, lack of access to the data, data bias, privacy problems, badly chosen tasks and algorithms, wrong tools and people, lack of resources, and evaluation problems.[85] In 2018, a self-driving car from Uber failed to detect a pedestrian, who was killed after a collision.[86] Attempts to use machine learning in healthcare with the IBM Watson system failed to deliver even after years of time and billions of dollars invested.[87][88] Bias Main article: Algorithmic bias Machine learning approaches in particular can suffer from different data biases. A machine learning system trained on current customers only may not be able to predict the needs of new customer groups that are not represented in the training data. When trained on man-made data, machine learning is likely to pick up the same constitutional and unconscious biases already present in society.[89] Language models learned from data have been shown to contain human-like biases.[90][91] Machine learning systems used for criminal risk assessment have been found to be biased against black people.[92][93] In 2015, Google photos would often tag black people as gorillas,[94] and in 2018 this still was not well resolved, but Google reportedly was still using the workaround to remove all gorillas from the training data, and thus was not able to recognize real gorillas at all.[95] Similar issues with recognizing non-white people have been found in many other systems.[96] In 2016, Microsoft tested a chatbot that learned from Twitter, and it quickly picked up racist and sexist language.[97] Because of such challenges, the effective use of machine learning may take longer to be adopted in other domains.[98] Concern for fairness in machine learning, that is, reducing bias in machine learning and propelling its use for human good is increasingly expressed by artificial intelligence scientists, including Fei-Fei Li, who reminds engineers that "There’s nothing artificial about AI...It’s inspired by people, it’s created by people, and—most importantly—it impacts people. It is a powerful tool we are only just beginning to understand, and that is a profound responsibility.”[99] Model assessments Classification of machine learning models can be validated by accuracy estimation techniques like the holdout method, which splits the data in a training and test set (conventionally 2/3 training set and 1/3 test set designation) and evaluates the performance of the training model on the test set. In comparison, the K-fold-cross-validation method randomly partitions the data into K subsets and then K experiments are performed each respectively considering 1 subset for evaluation and the remaining K-1 subsets for training the model. In addition to the holdout and cross-validation methods, bootstrap, which samples n instances with replacement from the dataset, can be used to assess model accuracy.[100] In addition to overall accuracy, investigators frequently report sensitivity and specificity meaning True Positive Rate (TPR) and True Negative Rate (TNR) respectively. Similarly, investigators sometimes report the false positive rate (FPR) as well as the false negative rate (FNR). However, these rates are ratios that fail to reveal their numerators and denominators. The total operating characteristic (TOC) is an effective method to express a model's diagnostic ability. TOC shows the numerators and denominators of the previously mentioned rates, thus TOC provides more information than the commonly used receiver operating characteristic (ROC) and ROC's associated area under the curve (AUC).[101] Ethics Machine learning poses a host of ethical questions. Systems which are trained on datasets collected with biases may exhibit these biases upon use (algorithmic bias), thus digitizing cultural prejudices.[102] For example, using job hiring data from a firm with racist hiring policies may lead to a machine learning system duplicating the bias by scoring job applicants against similarity to previous successful applicants.[103][104] Responsible collection of data and documentation of algorithmic rules used by a system thus is a critical part of machine learning. Because human languages contain biases, machines trained on language corpora will necessarily also learn these biases.[105][106] Other forms of ethical challenges, not related to personal biases, are more seen in health care. There are concerns among health care professionals that these systems might not be designed in the public's interest but as income-generating machines. This is especially true in the United States where there is a long-standing ethical dilemma of improving health care, but also increasing profits. For example, the algorithms could be designed to provide patients with unnecessary tests or medication in which the algorithm's proprietary owners hold stakes. There is huge potential for machine learning in health care to provide professionals a great tool to diagnose, medicate, and even plan recovery paths for patients, but this will not happen until the personal biases mentioned previously, and these "greed" biases are addressed.[107] Hardware Since the 2010s, advances in both machine learning algorithms and computer hardware have led to more efficient methods for training deep neural networks (a particular narrow subdomain of machine learning) that contain many layers of non-linear hidden units.[108] By 2019, graphic processing units (GPUs), often with AI-specific enhancements, had displaced CPUs as the dominant method of training large-scale commercial cloud AI.[109] OpenAI estimated the hardware compute used in the largest deep learning projects from AlexNet (2012) to AlphaZero (2017), and found a 300,000-fold increase in the amount of compute required, with a doubling-time trendline of 3.4 months.[110][111] Software Software suites containing a variety of machine learning algorithms include the following: Free and open-source so
ITCS 6190 : Cloud Computing for Data Analysis project. Movie Recommendation Engine for Netflix Data with custom functions implementation and library usage.
zachary013
This project is a Netflix clone built using the MERN stack (MongoDB, Express, React, Node.js). The application replicates the core functionalities of Netflix, including user authentication, movie browsing, video streaming, and personalized recommendations.
harshiltomar
Reactjs and Tailwind based Netflix Project with OpenAI's API Recommendations and FIrebase based User Database and Authentication and Movie Recommendation System per page with Use-Link sub Movie Navigation
jasonhotsauce
This is a simple project to demonstrate how to implement a movie recommendation like Netflix using Google Web Toolkit. It will recommend you movies base on how you score your watched movie and how other people score. It's typically a machine learning topic.
dhairyasonix
A Netflix-like movie browsing app built with React.js and Redux Toolkit. Features include user authentication, GPT-powered search, personalized recommendations, and trailer playback, all styled with Tailwind CSS. This project showcases advanced React concepts and a seamless user experience.
saif580
Netflix Clone This project is a Netflix-like streaming application that incorporates a recommendation system powered by OpenAI's GPT for movie suggestions. It is built using Create React App, configured with Tailwind CSS, and integrates with Firebase for user authentication and data storage.
nm4archana
The recommender system takes two basic approaches, that is Collaborative Filtering or Content Based Filtering. The first approach is used in this project. Collaborative Filtering arrives at a recommendation that is based on a model of prior user behavior like movie ratings. I have used two datasets - MovieLens and Netflix Prize Data. This filtering technique has two popular approaches - Nearest Neighbor and Latent Factor based method. For the second technique, Sparks Alternating Least Squared implementation, an RDD - based API is used
shubhamrai1318
The goal of this project is to find similarity within groups of people to build a movie recommendation system for users. We are going to analyze a dataset from the Netflix database to explore the characteristics that people share in movies. We have experienced it ourselves or have been in the room, the endless scrolling of selecting what to watch.
papacosmas
The purpose of this R project is to create a **rating recommender system through machine learning training** That recommender system will be able to predict a users rating into a new movie. For training and testing our ML models, we will use the 10M (millions) row rating dataset named MovieLens created by the University of Minnesota. It was released at 1/2009 so our newest movies are until 2008. In order to find a pattern and behavior of the data, the data sets where enhanced by many new features (dimensions). As validation of the models we wil use RMSE. During the project are given more explanations. Many algorithms and ML models where used in order to achieve the lowest RMSE. Such us: **Matrix Factorization with parallel stochastic gradient descent, H2o stacked ensembles of (GBM,GLM,DRF,NN). Also they where used H2o Auto ML models** More details are below and also during the project. In case you dont want to wait and train the models, you can download them from my github and load them. There are 2 types of recommender systems: **Content filtering (based on the description of the item also called meta data or side information)** And **collaborative Filtering**: Those techniques are calculating the similarity measures of the target ITEMS and finding the minimum (Euclidean distance, or Cosine distance, or other metric, it depends on the algorithm). This is done by filtering the interests of a user, by collecting preferences from many users (collaborating). The underlying assumption is that if a person X has the same opinion as a person Y then the recommendation system should be based on preferences of person Y (similarity). We will enhance the collaborative filtering with the help of **Matrix factorization**. MF is a class of collaborative filtering algorithms used in recommender systems. Matrix factorization algorithms work by **decomposing the user-item interaction matrix into the product of two lower dimensionality rectangular matrices**. This family of methods became **widely known during the Netflix prize challenge due to its effectiveness as reported by Simon Funk in his 2006 blog post**, where he shared his findings with the research community LINK (https://en.wikipedia.org/wiki/Matrix_factorization_(recommender_systems) We will apply **Matrix Factorization with parallel stochastic gradient descent**. With the help of "recosystem" package it is an R wrapper of the LIBMF library which creates a Recommender System by Using Parallel Matrix Factorization. The main task of recommender system is to predict unknown entries in the rating matrix based on observed values. The main purpose is to calculate the matrix RMXn by the product of the two matrixes of the lower dimension, Pkxm and Qkxn : RQ More info on the recosystem package and the techniques LINK (https://cran.r-project.org/web/packages/recosystem/vignettes/introduction.html)
prathimacode-hub
It's a project on Netflix and Prime movie recommendation system based on ratings.
DeewakarChakraborty
In this project, I have tried to implement a collaborative-filtering based Netflix custom movie recommendation system using a kaggle dataset based on user movie ratings
VaibhavDashora
This project builds a personalized movie recommendation engine using collaborative filtering and content-based techniques. It analyzes user preferences and movie metadata to suggest films tailored to individual tastes—similar to systems used by Netflix and IMDb.
allenkang92
"This project implements a movie recommendation system based on Netflix datasets using PySpark and FastAPI. It includes real-time data processing with Kafka, system monitoring with the ELK stack, and data analysis tools like Jupyter Lab."
Porwal-Aryan
ABSTRACT OF THE PROJECT:- A Recommendation engine filters the data using different algorithms and recommends the most relevant items to users. It is a type of information filtering system which attempts to predict the preferences of a user, and make suggests based on these preferences, especially in streaming services. For streaming services like Netflix, recommendation systems are essential for helping users find new movies to enjoy. Objective of the recommendation system is to achieve customer loyalty by providing relevant content and maximising the time spent by a user on your website or channel. This also helps in increasing customer engagement. Three main approaches are used for recommender systems. One is Demographic Filtering i.e They offer generalized recommendations to every user, based on movie popularity with similar demographic features. Second is Content-based filtering, where users interests are profiled using information collected, and recommend items based on that profile. The other is collaborative filtering, where we try to group similar users together and use information about the group to make recommendations to the user. In this project, we propose a machine learning approach to produce a Content-based filtering system which predicts movie recommendations for a user based on large database of continuously updated movies. Need of Movie Recommendation System – Helps the item provider (ex. Netflix/Amazon) to deliver their items to the right user – Websites like Netflix can improve user-engagement – It increases revenues for business through increased consumption.
Yashu-teach
Netflix offers thousands of movies and TV shows, which can make it hard for users to decide what to watch. To solve this problem, this project focuses on creating a movie recommendation system that suggests movies based on user preferences.
Anshulyadav20-git
The Project Title"Netflix movie recommendations is create a dashboar.
ankittkamal
Netflix Clone Project with integrating OpenAI GPT search functionality for unique movie Recommendations.
imkhizarhayat
A Machine Learning Final Year Project Netflix Movie Recommendation Engine
This project aims to build a movie recommendation system with Netflix dataset.
mahsa-ebrahimian
This project is related to analysis of attacks to a recommendation system, using netflix dataset as movie recommendation system.
RohitGoyal474
Developed a cutting-edge React project, Netflix-GPT, leveraging Firebase API for seamless movie recommendations and other key functionalities.
Gah2f
Netflix Clone 🎥🍿 A fully functional Netflix-inspired web application designed to provide an immersive movie streaming experience. This project replicates the core features of Netflix, including a sleek user interface, movie browsing, dynamic recommendations, and more!
SaurabhShashi
Netflix GPT is a movie recommendation application enhanced with AI capabilities. This project provides personalized movie suggestions based on user preferences.
sachinrajput9810
Netflix GPT is a React-based web application designed to mimic a Netflix-like interface with additional features powered by Gemini GPT for movie recommendations. This project includes user authentication, a movie browsing experience, and a custom recommendation engine.
gbenga-akindeko
🚀 Project Spotlight: Building Smart Movie Recommendations for "Netflix" 🚀 As a Data Scientist at "Netflix," I spearheaded the development of advanced recommendation systems to enhance user experiences across platforms. Our mission was clear: make movie selection effortless and enjoyable for our users.
Dhairyajeet-singh
Netflix movies recommendation project, it includes usage of RNN, Recommendation Learning, Data analysis and Pre-processing to provide top 5 movies similar to the movie mentioned
SCYALLAREDDY
This project implements a movie recommendation system using the Netflix dataset, utilizing content-based filtering from movie descriptions and collaborative filtering based on user ratings. Built in R, it employs various libraries for data manipulation, text processing, and visualization to provide personalized movie recommendations.
MatteoFasulo
This project is a recommendation system built with implicit ALS algorithm using Netflix UK's watch history data. It provides personalized movie recommendations and exposes a FastAPI API route for easy integration.
Aditi031204
This repository is based on my latest project Netflixgpt✨ which is inspired from Netflix & infused with AI-powered movie recommendation system.