Tags
Language
Tags
April 2024
Su Mo Tu We Th Fr Sa
31 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 1 2 3 4

Word2Vec: Build Semantic Recommender System With Tensorflow

Posted By: ELK1nG
Word2Vec: Build Semantic Recommender System With Tensorflow

Word2Vec: Build Semantic Recommender System With Tensorflow
Last updated 12/2018
MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
Language: English | Size: 2.27 GB | Duration: 1h 56m

Word2Vec Tutorial: Names Semantic Recommendation System by Building and Training a Word2vec Python Model with TensorFlow

What you'll learn
Building and Training a Word2vec Model with Python TensorFlow
Semantic Recommender System - Practical Project to Semantically Suggest Names
Source Code *.py Files of All Lectures
English Captions for All Lectures
Q&A board to send your questions and get them answered quickly
Requirements
Python Level: Intermediate. This Word2Vec tutorial assumes that you already know the basics of writing simple Python programs and that you are generally familiar with Python's core features (data structures, file handling, functions, classes, modules, common library modules, etc.).
Python 2.7 or Python 3.4, 3.5, or 3.6. Tensorflow is not officially supporting Python 3.7.
Our trainees are positive and willing to learn. They practice lessons and send their questions to the Q&A section of the course, and we expect new trainees to have the same spirit.
Description
In this Word2Vec tutorial, you will learn how to train a Word2Vec Python model and use it to semantically suggest names based on one or even two given names.This Word2Vec tutorial is meant to highlight the interesting, substantive parts of building a word2vec Python model with TensorFlow.Word2vec is a group of related models that are used to produce Word Embeddings. Embedding vectors created using the Word2vec algorithm have many advantages compared to earlier algorithms such as latent semantic analysis.Word embedding is one of the most popular representation of document vocabulary. It is capable of capturing context of a word in a document, semantic and syntactic similarity, relation with other words, etc. Word Embeddings are vector representations of a particular word.The best way to understand an algorithm is to implement it. So, in this course you will learn Word Embeddings by implementing it in the Python library, TensorFlow.Word2Vec is one of the most popular techniques to learn word embeddings using shallow neural network. Word2vec is a particularly computationally-efficient predictive model for learning word embeddings from raw text.In this Word2Vec tutorial, you will learn The idea behind Word2Vec:Take a 3 layer neural network. (1 input layer + 1 hidden layer + 1 output layer)Feed it a word and train it to predict its neighbouring word.Remove the last (output layer) and keep the input and hidden layer.Now, input a word from within the vocabulary. The output given at the hidden layer is the ‘word embedding’ of the input word.In this Word2Vec tutorial we are going to do all steps of building and training a Word2vec Python model (including pre-processing, tokenizing, batching, structuring the Word2Vec Python model and of course training it) using Python TensorFlow. Finally, we are going to use our trained Word2Vec Python model to semantically suggest names based on one or even two given names.Let's start!

Overview

Lecture 1 Course Overview

Lecture 2 Course Tips

Section 1: Model Building and Training

Lecture 3 Environment Setup

Lecture 4 Tokenizing

Lecture 5 Batching

Lecture 6 Structuring Your Model

Lecture 7 Training

Lecture 8 Showing Map of Words

Lecture 9 Do you want to learn a specific Word2Vec, TensorFlow or NLP topic?

Section 2: Real World Considerations

Lecture 10 Saving and Restoring

Lecture 11 Text Pre-processing

Section 3: Project

Lecture 12 Search for Names Only

Lecture 13 Project Solution

Lecture 14 Appendix: Good Extra Readings

Section 4: Practical Exercise

This Word2Vec tutorial is meant for those who are familiar with Python and want to learn how to use TensorFlow to implement Word2Vec Word Embeddings, building a real-life Semantic Recommendation System.