hiep04 / Homework

0 stars 0 forks source link

Thanks! #1

Open coderschoolreview opened 5 years ago

coderschoolreview commented 5 years ago

Goal of this Assignment

The goal of this assignment was to introduce you to 2 main concepts in Machine Learning:

You learn how to query and clean data using pandas library in Python, make some plots which help to understand more about data with Seaborn library.

Things you did well:

Things to work on:

To sum up:

coderschoolreview commented 5 years ago

The goal of this assignment is for you to learn to build and evaluate a model using scikit-learn library in Python. You learn how to do Data pre-processing, splitting it into training and test sets, training your model using training sets and evaluating its performance on test sets.

Things you did well:

Some minor tips:

coderschoolreview commented 5 years ago

Hi Hiep Pham,

It seem like you are getting familiar with sentiment analysis, but still have trouble finishing your assignment.

The reason for that issue is in your " def preprocessor(text): " function, you name the emotion icon collection "emotions" but use "emoticons" later in this code:

coderschoolreview commented 5 years ago

Assignment 6

Goal of this Assignment

The goal of this assignment was to introduce you to following concepts:

You learn how to use PCA for dimension reduction, KMeans, and Hierarchical Clustering. Also you learn to visualize the result of both tenichque.

Things you did well:

To sum up:

Few tips

You're stuck at this question because you initiated PCA with 2 components but fit_transform X with 6 component (V1,... V6) and (PC1,...,PC6)