master c5728318f927 cached
14 files
42.2 MB
103.6k tokens
36 symbols
1 requests
Download .txt
Showing preview only (385K chars total). Download the full file or copy to clipboard to get everything.
Repository: ricardorei/lightning-text-classification
Branch: master
Commit: c5728318f927
Files: 14
Total size: 42.2 MB

Directory structure:
gitextract_pewj7ny_/

├── .gitignore
├── README.md
├── classifier.py
├── data/
│   ├── MP2_2022_dev.csv
│   ├── MP2_2022_train.csv
│   ├── README.md
│   ├── imdb_reviews_test.csv
│   └── imdb_reviews_train.csv
├── interact.py
├── requirements.txt
├── test.py
├── tokenizer.py
├── training.py
└── utils.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
experiments
*DS_Store

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

================================================
FILE: README.md
================================================
# Minimalist Implementation of a BERT Sentence Classifier

This repo is a minimalist implementation of a BERT Sentence Classifier.
The goal of this repo is to show how to combine 3 of my favourite libraries to supercharge your NLP research.

My favourite libraries:
- [PyTorch-Lightning](https://pytorch-lightning.readthedocs.io/en/latest/)
- [Transformers](https://huggingface.co/transformers/index.html)
- [PyTorch-NLP](https://pytorchnlp.readthedocs.io/en/latest/index.html)


## Requirements:

This project uses Python 3.6

Create a virtual env with (outside the project folder):

```bash
virtualenv -p python3.6 sbert-env
source sbert-env/bin/activate
```

Install the requirements (inside the project folder):
```bash
pip install -r requirements.txt
```

## Getting Started:

### Train:
```bash
python training.py
```

Available commands:

Training arguments:
```bash
optional arguments:
  --seed                      Training seed.
  --batch_size                Batch size to be used.
  --accumulate_grad_batches   Accumulated gradients runs K small batches of \
                              size N before doing a backwards pass.
  --val_percent_check         If you dont want to use the entire dev set, set \
                              how much of the dev set you want to use with this flag.      
```

Early Stopping/Checkpoint arguments:
```bash
optional arguments:
  --metric_mode             If we want to min/max the monitored quantity.
  --min_epochs              Limits training to a minimum number of epochs
  --max_epochs              Limits training to a max number number of epochs
  --save_top_k              The best k models according to the quantity \
                            monitored will be saved.
```

Model arguments:

```bash
optional arguments:
  --encoder_model             BERT encoder model to be used.
  --encoder_learning_rate     Encoder specific learning rate.
  --nr_frozen_epochs          Number of epochs we will keep the BERT parameters frozen.
  --learning_rate             Classification head learning rate.
  --dropout                   Dropout to be applied to the BERT embeddings.
  --train_csv                 Path to the file containing the train data.
  --dev_csv                   Path to the file containing the dev data.
  --test_csv                  Path to the file containing the test data.
  --loader_workers            How many subprocesses to use for data loading.
```

**Note:**
After BERT several BERT-like models were released. You can test different size models like Mini-BERT and DistilBERT which are much smaller.
- Mini-BERT only contains 2 encoder layers with hidden sizes of 128 features. Use it with the flag: `--encoder_model google/bert_uncased_L-2_H-128_A-2`
- DistilBERT contains only 6 layers with hidden sizes of 768 features. Use it with the flag: `--encoder_model distilbert-base-uncased`

Training command example:
```bash
python training.py \
    --gpus 0 \
    --batch_size 32 \
    --accumulate_grad_batches 1 \
    --loader_workers 8 \
    --nr_frozen_epochs 1 \
    --encoder_model google/bert_uncased_L-2_H-128_A-2 \
    --train_csv data/MP2_2022_train.csv \
    --dev_csv data/MP2_2022_dev.csv \
```

Testing the model:
```bash
python test.py --experiment experiments/version_{date} --test_data data/MP2_2022_dev.csv
```

### Tensorboard:

Launch tensorboard with:
```bash
tensorboard --logdir="experiments/"
```

### Code Style:
To make sure all the code follows the same style we use [Black](https://github.com/psf/black).


================================================
FILE: classifier.py
================================================
# -*- coding: utf-8 -*-
import logging as log
from argparse import ArgumentParser, Namespace
from collections import OrderedDict

import numpy as np
import pandas as pd
import pytorch_lightning as pl
import torch
import torch.nn as nn
from torch import optim
from torch.utils.data import DataLoader, RandomSampler
from torchnlp.encoders import LabelEncoder
from torchnlp.utils import collate_tensors, lengths_to_mask
from transformers import AutoModel

from tokenizer import Tokenizer
from utils import mask_fill


class Classifier(pl.LightningModule):
    """
    Sample model to show how to use a Transformer model to classify sentences.

    :param hparams: ArgumentParser containing the hyperparameters.
    """

    class DataModule(pl.LightningDataModule):
        def __init__(self, classifier_instance):
            super().__init__()
            self.hparams = classifier_instance.hparams
            self.classifier = classifier_instance
            # Label Encoder
            self.label_encoder = LabelEncoder(
                pd.read_csv(self.hparams.train_csv).label.astype(str).unique().tolist(),
                reserved_labels=[],
            )
            self.label_encoder.unknown_index = None

        def read_csv(self, path: str) -> list:
            """Reads a comma separated value file.

            :param path: path to a csv file.

            :return: List of records as dictionaries
            """
            df = pd.read_csv(path)
            df = df[["text", "label"]]
            df["text"] = df["text"].astype(str)
            df["label"] = df["label"].astype(str)
            return df.to_dict("records")

        def train_dataloader(self) -> DataLoader:
            """Function that loads the train set."""
            self._train_dataset = self.read_csv(self.hparams.train_csv)
            return DataLoader(
                dataset=self._train_dataset,
                sampler=RandomSampler(self._train_dataset),
                batch_size=self.hparams.batch_size,
                collate_fn=self.classifier.prepare_sample,
                num_workers=self.hparams.loader_workers,
            )

        def val_dataloader(self) -> DataLoader:
            """Function that loads the validation set."""
            self._dev_dataset = self.read_csv(self.hparams.dev_csv)
            return DataLoader(
                dataset=self._dev_dataset,
                batch_size=self.hparams.batch_size,
                collate_fn=self.classifier.prepare_sample,
                num_workers=self.hparams.loader_workers,
            )

        def test_dataloader(self) -> DataLoader:
            """Function that loads the test set."""
            self._test_dataset = self.read_csv(self.hparams.test_csv)
            return DataLoader(
                dataset=self._test_dataset,
                batch_size=self.hparams.batch_size,
                collate_fn=self.classifier.prepare_sample,
                num_workers=self.hparams.loader_workers,
            )

    def __init__(self, hparams: Namespace) -> None:
        super(Classifier, self).__init__()
        self.hparams = hparams
        self.batch_size = hparams.batch_size

        # Build Data module
        self.data = self.DataModule(self)

        # build model
        self.__build_model()

        # Loss criterion initialization.
        self.__build_loss()

        if hparams.nr_frozen_epochs > 0:
            self.freeze_encoder()
        else:
            self._frozen = False
        self.nr_frozen_epochs = hparams.nr_frozen_epochs

    def __build_model(self) -> None:
        """Init BERT model + tokenizer + classification head."""
        self.bert = AutoModel.from_pretrained(
            self.hparams.encoder_model, output_hidden_states=True
        )

        # set the number of features our encoder model will return...
        self.encoder_features = self.bert.config.hidden_size

        # Tokenizer
        self.tokenizer = Tokenizer(self.hparams.encoder_model)

        # Classification head
        self.classification_head = nn.Sequential(
            nn.Linear(self.encoder_features, self.encoder_features * 2),
            nn.Tanh(),
            nn.Linear(self.encoder_features * 2, self.encoder_features),
            nn.Tanh(),
            nn.Linear(self.encoder_features, self.data.label_encoder.vocab_size),
        )

    def __build_loss(self):
        """Initializes the loss function/s."""
        self._loss = nn.CrossEntropyLoss()

    def unfreeze_encoder(self) -> None:
        """un-freezes the encoder layer."""
        if self._frozen:
            log.info(f"\n-- Encoder model fine-tuning")
            for param in self.bert.parameters():
                param.requires_grad = True
            self._frozen = False

    def freeze_encoder(self) -> None:
        """freezes the encoder layer."""
        for param in self.bert.parameters():
            param.requires_grad = False
        self._frozen = True

    def predict(self, sample: dict) -> dict:
        """Predict function.
        :param sample: dictionary with the text we want to classify.

        Returns:
            Dictionary with the input text and the predicted label.
        """
        if self.training:
            self.eval()

        with torch.no_grad():
            model_input, _ = self.prepare_sample([sample], prepare_target=False)
            model_out = self.forward(**model_input)
            logits = model_out["logits"].numpy()
            predicted_labels = [
                self.data.label_encoder.index_to_token[prediction]
                for prediction in np.argmax(logits, axis=1)
            ]
            sample["predicted_label"] = predicted_labels[0]

        return sample

    def forward(self, tokens, lengths):
        """Usual pytorch forward function.
        :param tokens: text sequences [batch_size x src_seq_len]
        :param lengths: source lengths [batch_size]

        Returns:
            Dictionary with model outputs (e.g: logits)
        """
        tokens = tokens[:, : lengths.max()]
        # When using just one GPU this should not change behavior
        # but when splitting batches across GPU the tokens have padding
        # from the entire original batch
        mask = lengths_to_mask(lengths, device=tokens.device)

        # Run BERT model.
        word_embeddings = self.bert(tokens, mask)[0]
        
        # Average Pooling
        word_embeddings = mask_fill(
            0.0, tokens, word_embeddings, self.tokenizer.padding_index
        )
        sentemb = torch.sum(word_embeddings, 1)
        sum_mask = mask.unsqueeze(-1).expand(word_embeddings.size()).float().sum(1)
        sentemb = sentemb / sum_mask
        
        return {"logits": self.classification_head(sentemb)}

    def loss(self, predictions: dict, targets: dict) -> torch.tensor:
        """
        Computes Loss value according to a loss function.
        :param predictions: model specific output. Must contain a key 'logits' with
            a tensor [batch_size x 1] with model predictions
        :param labels: Label values [batch_size]

        Returns:
            torch.tensor with loss value.
        """
        return self._loss(predictions["logits"], targets["labels"])

    def prepare_sample(self, sample: list, prepare_target: bool = True) -> (dict, dict):
        """
        Function that prepares a sample to input the model.
        :param sample: list of dictionaries.

        Returns:
            - dictionary with the expected model inputs.
            - dictionary with the expected target labels.
        """
        sample = collate_tensors(sample)
        tokens, lengths = self.tokenizer.batch_encode(sample["text"])

        inputs = {"tokens": tokens, "lengths": lengths}

        if not prepare_target:
            return inputs, {}

        # Prepare target:
        try:
            targets = {"labels": self.data.label_encoder.batch_encode(sample["label"])}
            return inputs, targets
        except RuntimeError:
            raise Exception("Label encoder found an unknown label.")

    def training_step(self, batch: tuple, batch_nb: int, *args, **kwargs) -> dict:
        """
        Runs one training step. This usually consists in the forward function followed
            by the loss function.

        :param batch: The output of your dataloader.
        :param batch_nb: Integer displaying which batch this is

        Returns:
            - dictionary containing the loss and the metrics to be added to the lightning logger.
        """
        inputs, targets = batch
        model_out = self.forward(**inputs)
        loss_val = self.loss(model_out, targets)

        # in DP mode (default) make sure if result is scalar, there's another dim in the beginning
        if self.trainer.use_dp or self.trainer.use_ddp2:
            loss_val = loss_val.unsqueeze(0)

        output = OrderedDict({"loss": loss_val})
        # can also return just a scalar instead of a dict (return loss_val)
        return output

    def validation_step(self, batch: tuple, batch_nb: int, *args, **kwargs) -> dict:
        """Similar to the training step but with the model in eval mode.

        Returns:
            - dictionary passed to the validation_end function.
        """
        inputs, targets = batch
        model_out = self.forward(**inputs)
        loss_val = self.loss(model_out, targets)

        y = targets["labels"]
        y_hat = model_out["logits"]

        # acc
        labels_hat = torch.argmax(y_hat, dim=1)
        val_acc = torch.sum(y == labels_hat).item() / (len(y) * 1.0)
        val_acc = torch.tensor(val_acc)

        if self.on_gpu:
            val_acc = val_acc.cuda(loss_val.device.index)

        # in DP mode (default) make sure if result is scalar, there's another dim in the beginning
        if self.trainer.use_dp or self.trainer.use_ddp2:
            loss_val = loss_val.unsqueeze(0)
            val_acc = val_acc.unsqueeze(0)

        output = OrderedDict(
            {
                "val_loss": loss_val,
                "val_acc": val_acc,
            }
        )

        # can also return just a scalar instead of a dict (return loss_val)
        return output

    def validation_end(self, outputs: list) -> dict:
        """Function that takes as input a list of dictionaries returned by the validation_step
        function and measures the model performance accross the entire validation set.

        Returns:
            - Dictionary with metrics to be added to the lightning logger.
        """
        val_loss_mean = 0
        val_acc_mean = 0
        for output in outputs:
            val_loss = output["val_loss"]

            # reduce manually when using dp
            if self.trainer.use_dp or self.trainer.use_ddp2:
                val_loss = torch.mean(val_loss)
            val_loss_mean += val_loss

            # reduce manually when using dp
            val_acc = output["val_acc"]
            if self.trainer.use_dp or self.trainer.use_ddp2:
                val_acc = torch.mean(val_acc)

            val_acc_mean += val_acc

        val_loss_mean /= len(outputs)
        val_acc_mean /= len(outputs)
        tqdm_dict = {"val_loss": val_loss_mean, "val_acc": val_acc_mean}
        result = {
            "progress_bar": tqdm_dict,
            "log": tqdm_dict,
            "val_loss": val_loss_mean,
        }
        return result

    def configure_optimizers(self):
        """Sets different Learning rates for different parameter groups."""
        parameters = [
            {"params": self.classification_head.parameters()},
            {
                "params": self.bert.parameters(),
                "lr": self.hparams.encoder_learning_rate,
            },
        ]
        optimizer = optim.Adam(parameters, lr=self.hparams.learning_rate)
        return [optimizer], []

    def on_epoch_end(self):
        """Pytorch lightning hook"""
        if self.current_epoch + 1 >= self.nr_frozen_epochs:
            self.unfreeze_encoder()

    @classmethod
    def add_model_specific_args(cls, parser: ArgumentParser) -> ArgumentParser:
        """Parser for Estimator specific arguments/hyperparameters.
        :param parser: argparse.ArgumentParser

        Returns:
            - updated parser
        """
        parser.add_argument(
            "--encoder_model",
            default="bert-base-uncased",
            type=str,
            help="Encoder model to be used.",
        )
        parser.add_argument(
            "--encoder_learning_rate",
            default=1e-05,
            type=float,
            help="Encoder specific learning rate.",
        )
        parser.add_argument(
            "--learning_rate",
            default=3e-05,
            type=float,
            help="Classification head learning rate.",
        )
        parser.add_argument(
            "--nr_frozen_epochs",
            default=1,
            type=int,
            help="Number of epochs we want to keep the encoder model frozen.",
        )
        parser.add_argument(
            "--train_csv",
            default="data/imdb_reviews_train.csv",
            type=str,
            help="Path to the file containing the train data.",
        )
        parser.add_argument(
            "--dev_csv",
            default="data/imdb_reviews_test.csv",
            type=str,
            help="Path to the file containing the dev data.",
        )
        parser.add_argument(
            "--test_csv",
            default="data/imdb_reviews_test.csv",
            type=str,
            help="Path to the file containing the dev data.",
        )
        parser.add_argument(
            "--loader_workers",
            default=8,
            type=int,
            help="How many subprocesses to use for data loading. 0 means that \
                the data will be loaded in the main process.",
        )
        return parser


================================================
FILE: data/MP2_2022_dev.csv
================================================
text,label
Works shockingly well,=Excellent=
Difficulty staying in,=VeryGood=
Favorite item,=Excellent=
These Roller Are NOT Magnetic,=Poor=
Nothing wrong with the product...but not what I was looking for,=Unsatisfactory=
Do these actually work?,=Good=
Nothing great,=Good=
"Soft, touchable feet",=Excellent=
Terrible value,=Good=
A Good Kit.,=Good=
Great but don't go overboard with usage,=VeryGood=
Just Okay - No Noticeable Results,=Unsatisfactory=
Neutrogena T-Gel Shampoo,=Excellent=
A Real Keeper!,=Excellent=
Better for Fine Hair,=Good=
It's alright,=Good=
Total Waste of Time,=Poor=
ZThis was a big mistake as well,=Poor=
For older Woman,=Good=
Orange,=Poor=
Love this color!,=Excellent=
Effective! My lips look and feel much better,=Excellent=
OK....but expected better,=Good=
I like it,=VeryGood=
Perfect,=Excellent=
I want to love this...,=Good=
Great buy1,=Excellent=
I would use it again,=Good=
Not impressed,=Unsatisfactory=
Nice Cream.,=VeryGood=
"A necessity for everyone, a classic.",=Excellent=
The BEST Sweatband,=VeryGood=
Must-have for sensitive skin,=Excellent=
I love this lotion,=Excellent=
"Good color, strong smell",=VeryGood=
Excellent choice for very dry skin,=Excellent=
Not pigmented enough,=Poor=
Features include a massive mess and a more-than-minor burning sensation.,=Poor=
"OK base coat, but you can find a better top coat.",=Good=
no healer,=Poor=
GREAT makeup remover wipes,=Excellent=
My favorite cologne,=Excellent=
"Good dryer for African-American, natural hair",=VeryGood=
Not impressed,=Unsatisfactory=
Use a lot,=VeryGood=
Facial Scrub,=Good=
Didn't work for me,=Poor=
Absorbent and larger and thicker than expected,=Excellent=
Disappointing.,=Unsatisfactory=
Use them all the time,=Excellent=
Not a fan,=Poor=
Worst mineral veil ever,=Poor=
Does the job,=VeryGood=
Great Stuff,=Excellent=
"Very well absorbent by the skin, no smell",=Excellent=
Packaging...,=Good=
Excellent,=Excellent=
scent is okay but kind of artificial smelling.,=VeryGood=
Does the job,=VeryGood=
I like it,=VeryGood=
Makes my eyes burn,=Good=
Great brush and I have only used Mason Pearson brushes until now!,=Excellent=
No change,=Poor=
It's OK.,=Good=
Love this,=Excellent=
"Sorry Olay, nay!",=Good=
"Creates 80s kinks, not waves.",=Poor=
Good !,=VeryGood=
HORRIBLE!,=Poor=
it still kicking,=Excellent=
Don't buy,=Poor=
Ok,=Good=
Fantastic product that does what it says it will do!,=Excellent=
HATE THIS,=Poor=
A beauty routine staple!,=Excellent=
Disappointing,=Unsatisfactory=
Terrible on sensitive/dry skin!,=Poor=
"Cheap, but they work.  Probably not suitable for thin or fine hair",=Good=
doesn't seem to be working on me,=Good=
"Thick, but moisturizing",=VeryGood=
It Clumps rather than Shatters,=Poor=
Left me limp...,=Unsatisfactory=
Junk,=Poor=
Beware if you have sensitive skin!,=Unsatisfactory=
Sent it back right away,=Poor=
sucked,=Poor=
"This mascara has it all - clumps, strings, goo, smudges and more",=Poor=
It's okay,=Good=
Not what I thought.,=Good=
love the rose smell,=VeryGood=
What a joke,=Poor=
Great Humectant.,=Good=
Not for my hair,=Unsatisfactory=
Tickle My France-y,=Poor=
Great product for natural hair,=Excellent=
"This thing is heavy, and the handle hurts my hand :(",=Unsatisfactory=
omg finally help 4 eye areas!,=Excellent=
Very Expensive,=Good=
The smell!,=Unsatisfactory=
"Very drying, but great!!",=VeryGood=
Huge disappointment,=Unsatisfactory=
It's not what it's supposed to look like,=Good=
blonde,=Good=
Currently wearing,=Excellent=
Over-rated.,=Poor=
Wish it was more red,=Good=
Depends on your priorities,=Good=
the best,=Excellent=
amazing product for dry wrinkled mid 40 and up skin,=Excellent=
No noticible changes yet.....,=VeryGood=
No complaints,=Good=
Made my under eyes dry and flaky,=Poor=
Price is waaaaay too high,=VeryGood=
Thick to apply,=Good=
Will continue to use this....,=Good=
not what I thought it was going to be!,=Poor=
"Nothing outstanding or remarkable, but it gets the job done",=VeryGood=
It Stings on Skin when Applied!! Does not Stay very Good.,=Unsatisfactory=
Pretty good,=Good=
Waste of my Money,=Poor=
The sweet smell of papaya,=Good=
Does not smell the same.,=Poor=
One Of The Worst Rashes I've Ever Had,=Poor=
"DML Daily Facial Moisturizer, SPF 25 - 1.5 oz",=Good=
"Tingles, Burns, Hurts!",=Poor=
Strong Goat Droppings Smell :-(,=Unsatisfactory=
Already a fan,=Excellent=
"Very Loud \Meh\""""",=Good=
"Good, but not strong enough",=VeryGood=
Not for Sensitive Skins,=Unsatisfactory=
Just okay....,=Good=
Hard for the spout to stay open,=Poor=
A Facial in a Pad,=VeryGood=
Not for sensitive skin,=Unsatisfactory=
Not Good for Sensitive Skin. Say NO. Very Cheap.,=Poor=
Better than the brush that came with the Clarisonic,=Good=
Surprisingly wonderful,=Excellent=
It's okay,=Good=
It removes all,=Excellent=
Didn't work for me,=Unsatisfactory=
makes my skin feel so clean,=Excellent=
"Good sunblock, but not as a daily moisturizer",=Unsatisfactory=
THIS BLACK JEWEL DOES THE JOB!!!!!,=Excellent=
Very good product,=Excellent=
Great dryer,=VeryGood=
Hate it.,=Poor=
Fogless mirror guaranteed,=Poor=
Not worth the price...,=Good=
fine mist sdpray bottle,=VeryGood=
"doesnt last, and i could barely notice it was on my lips.",=Unsatisfactory=
Best Cuticle Oil on the Market,=Excellent=
Poor quality control!!!,=Poor=
very oily,=Unsatisfactory=
ughhhh,=Poor=
BEST TONER EVER,=Excellent=
Works well as a cleanser,=VeryGood=
This stuff works great but does not last long,=Good=
Excellent product,=Excellent=
Ok but Smell is Strong in This Product,=Good=
Horribly over-rated product,=Poor=
They keep sliding off.,=Good=
Curly hair styler,=VeryGood=
terrible photo,=VeryGood=
Classit,=Good=
Great for scars,=Excellent=
Just what I was looking for!,=Excellent=
I wanted 30 spf with zinc  - it's kind of oily,=Good=
Light and effective,=Excellent=
Palmers Night Cream,=Unsatisfactory=
VERY thorough clarifying shampoo,=VeryGood=
Brittle Nails Beware,=Unsatisfactory=
"Thayers is great, but alcohol is not",=Good=
"Holy Moly, Batman, Not Gluten-Free",=Good=
Works quicker than murad,=Excellent=
"Great transfer, but full nail images are way too small.",=Unsatisfactory=
This is horrible!!!!,=Unsatisfactory=
great product but doesn't hold enough,=Good=
I use it with my M.A.C.,=Excellent=
Ehh,=Poor=
one of the best,=VeryGood=
better than I expected,=Excellent=
Great sunscreen,=VeryGood=
Meh..,=Good=
Not great,=Poor=
sticky,=Good=
MIGHT work... But it peels HORRIBLY!,=Poor=
It's just a beautiful bottle.,=Good=
the worst,=Poor=
Awful Odor,=Poor=
I've used better.,=Good=
Awesome,=Excellent=
great anti-aging product!,=Excellent=
I feel the importance of a good makeup tool,=Unsatisfactory=
Not so Rapid results,=Unsatisfactory=
its okay,=Good=
Delivery,=Poor=
Good stuff,=VeryGood=
Just Ok,=Good=
Not really for me,=Good=
strong fragrance,=Good=
HEAVY!,=Good=
Great product.,=Excellent=
Didn't Work For Me,=Unsatisfactory=
Not Going Back to My Old Hair Dryers!,=VeryGood=
Great daytime moisturizer,=VeryGood=
Interesting,=Unsatisfactory=
Great product: Cleared my skin,=Excellent=
Smarter Than the Makeup,=Good=
Painfully hard bristles,=Poor=
"Decent and affordable, but...",=Good=
Very odd smell...,=Poor=
great skin oil,=VeryGood=
"Natural is always the best, results are positive",=VeryGood=
"Good hair dryer, but not for me.",=Good=
Didn't really help with wrinkles....,=Good=
Bargain set of 6 for classic sporty shower smell,=VeryGood=
"Great for \dry brushing\"" your skin""",=VeryGood=
Nice not oily,=Unsatisfactory=
E oil,=Excellent=
Price?!,=Unsatisfactory=
I like it,=VeryGood=
Good self tan product.,=VeryGood=
Nice Product But Has It's Pros and Cons,=Good=
"Stays on as promised, but...",=Good=
Not what I expected..,=Poor=
Pretty Disappointing,=Unsatisfactory=
Great for the body,=Good=
Perfect for work,=Excellent=
"good, if you're not really dry",=Good=
Does anyone make a similar product without a scent?,=Unsatisfactory=
Better than most pedicures,=VeryGood=
Speeds up hair drying,=VeryGood=
"Fun, feels good, but kind of disappointing.",=Good=
Regenerist fluid worked better.,=Good=
"strong scent, but good moisturizing",=Good=
I LOVE THIS,=Excellent=
Terrible!,=Poor=
Helpful!,=VeryGood=
Good Stuff!,=VeryGood=
Doesn't have the greatest longevity,=VeryGood=
Good for self tanning beginners.,=Good=
No change yet:(,=Poor=
I Like it,=VeryGood=
St Ives Is the Best!!,=Excellent=
Not for me,=Unsatisfactory=
dry pads don't take my eye makup off!,=Good=
Been using for years,=Excellent=
Greasy,=Poor=
A must have for fine hair!,=Excellent=
Very claming for the Nu Derm system,=Excellent=
Not the best lipgloss a very cheap gloss,=Poor=
meh,=VeryGood=
Ehhh,=Good=
Hair Dryer,=Excellent=
GOOD,=VeryGood=
I finally have nails,=Excellent=
The worst stuff in existance....Seriously!,=Poor=
Ardell Lash Growth Accelerator,=Unsatisfactory=
I love this color.,=Excellent=
"Love the product line, hate this product.",=Poor=
Where the blush?,=Unsatisfactory=
Great sunblock/ too heavy for me.,=Good=
bye bye blemish,=Excellent=
Buyers Beware,=Poor=
great for wigs,=Excellent=
Useful all year round...but especially in the summer,=Excellent=
Will dry your hair out,=Poor=
Great for dry skin,=Excellent=
Nice Set for the Price,=Excellent=
"DRY PADS, POOR RESULTS",=Good=
honest review,=Unsatisfactory=
Did nothing for me....,=Poor=
The WORST foundation I've ever used,=Poor=
does not heat up,=Poor=
Not my cup of tea.,=Unsatisfactory=
great power,=VeryGood=
store123 is the worst,=Poor=
SAVE YOUR MONEY,=Poor=
Didnt see a difference,=Good=
So so,=Unsatisfactory=
Not great for fine hair,=Unsatisfactory=
Allergic reaction,=Unsatisfactory=
Good product!,=VeryGood=
Lovely,=Excellent=
Effective,=VeryGood=
Can't really tell,=Good=
"Don't really see what's so \Ultra\"" about it...""",=Good=
I LIKE IT,=VeryGood=
love,=Excellent=
"Simple, Great Brush",=Excellent=
NO MORE TANGLES - CLEAN - NO MORE OILY HAIR,=Excellent=
What happened to the Cetaphil bar I used to know and love?,=Poor=
COLORFUL NEUTRAL PROTEIN FILLER 4 FL OZ,=Excellent=
"Smells nice, subtle glitter, lots of shine",=VeryGood=
just got !,=Excellent=
Not sure about this,=Unsatisfactory=
THIS WAS A COUNTERFEIT!!,=Poor=
Gross,=Poor=
hate this product,=Poor=
didn't work for me,=Poor=
Not worth the money,=Unsatisfactory=
Did not deliver expected results,=Unsatisfactory=
uncomfortable to use,=Unsatisfactory=
Just For Me Hair Milk Conditioner,=Good=
Smells so good!!,=VeryGood=
Looks like shit. On fake lashes,=Good=
Overpriced for results,=Good=
Too early to see results,=VeryGood=
made my hair melt!,=Poor=
Atomizer stops working Scent doesn't last,=Good=
spells good,=VeryGood=
Lotion,=Poor=
They are alright,=VeryGood=
Slow but ok,=VeryGood=
Yuk...waste of money,=Poor=
nyx mascard clumpy mess,=Unsatisfactory=
light,=Excellent=
my face feels very clean and looks shiny!!!,=Excellent=
New face wash,=Good=
Another great product I hope stays around forever,=Excellent=
Just OK,=Good=
Mavala Scientifique Nail Hardener,=VeryGood=
So far so good,=VeryGood=
Strips hair,=Poor=
Too soft,=Poor=
best facial moisturizer on the market!,=Excellent=
Just not for me,=Unsatisfactory=
NICE AMBER !,=Excellent=
Seem Not the same product,=Poor=
It does good to even out darkness,=Good=
scent lasts all day long,=Poor=
"unnatural yellow color, also HUGE in size",=Unsatisfactory=
Severe allergic reaction/ anaphylaxis,=Poor=
"Hasn't \Rapidly Reduced\"" My Wrinkles""",=Unsatisfactory=
Great Product,=Excellent=
Puffiness is gone.,=Excellent=
Good cleansing sponge.,=Excellent=
eyes itched and definite smudging effect,=Unsatisfactory=
I should have known ...,=Good=
Didnt work for me,=Unsatisfactory=
"Oh me, oh my--Absolutely Amazing!",=Excellent=
Great Source,=Excellent=
It works!,=VeryGood=
great,=Excellent=
This i like alot,=VeryGood=
Not so much,=Unsatisfactory=
it doesn't work for me and it smells wired!,=Good=
Seems to make little difference,=Good=
Quality shampoo,=VeryGood=
never worked!!!,=Poor=
not a 5 star item but worksI,=Good=
its ok if u absolutely cannot afford a Expensive hair iron,=Unsatisfactory=
Doesn't do it for me,=Unsatisfactory=
so helpfull,=Excellent=
Biotin,=Good=
Nice comb,=Excellent=
confused,=Poor=
Not Paraben Free.,=Poor=
Not a big difference,=Good=
"Thus far, no miracle",=Good=
Waste money,=Poor=
great product,=Excellent=
Wonderful,=Excellent=
Threw it away!,=Poor=
Sticky and bad odor-,=Unsatisfactory=
It's alright.,=Unsatisfactory=
Not actually Moisturizing...,=Poor=
Great Stuff!  Swear by It!,=Excellent=
"OK Powder, Bad Packaging and Brush!",=Good=
Not impressed!,=Poor=
Great details,=VeryGood=
They pretty much work.,=VeryGood=
Great Buy!!!,=VeryGood=
Didn't stick for me,=Unsatisfactory=
good value,=VeryGood=
Okey,=Unsatisfactory=
I Love It!,=Excellent=
"sticky, sticky, sticky!!!!!",=Unsatisfactory=
Causes puffy eyes in the morning.,=Good=
Cure for dry skin patches,=VeryGood=
Really like it,=Excellent=
It's a good one,=VeryGood=
T3 IS TOPS FOR US,=VeryGood=
great product,=VeryGood=
Peppermint lotion,=Good=
Smells like chemicals- awful scent and oily texture,=Poor=
eh,=Good=
I don't see how this can be any better then scrubbing yourself,=Good=
Best primer!,=VeryGood=
Sticky feeling!,=Unsatisfactory=
Beautiful color (Dolce Vita) on fair skin...not as much staying power as expected,=VeryGood=
DRYING,=Unsatisfactory=
Not a fan,=Unsatisfactory=
"It's okay.... my Pretika oscillates, which makes it feel too abrasive on my non-sensitive skin",=Good=
Not as great,=Unsatisfactory=
Like a child's skin..oooooh so soft and smooth.,=Excellent=
LOVE IT!!!!,=Excellent=
"Yucky, yucky!!!",=Poor=
"NOTHING \GOODY\"" ABOUT IT!""",=Poor=
Too man-like for me,=Unsatisfactory=
This is the best,=Excellent=
Good Product for the Eyes,=VeryGood=
Okay,=Unsatisfactory=
Great shine and smell!!,=Unsatisfactory=
a good serum,=VeryGood=
Nice Cream,=Good=
Excellent soap,=Excellent=
"good cream, good dispenser",=VeryGood=
Not wett enough,=Good=
Whew! It stinks!,=Unsatisfactory=
"Dry, scratchy oddly woven wipes",=Unsatisfactory=
Philosopy is the BEST,=Excellent=
Breath Of Fresh Air,=VeryGood=
"Sticky, thick, but makes your skin soft!",=Good=
Great stuff cheap!,=Excellent=
"Perfect for full body, even for sensitive users",=Excellent=
Great scent!,=Excellent=
"Great, subtle scent",=Excellent=
Used to love it but it feels a lot more silicon in it now,=VeryGood=
Just better than average,=Good=
Yum!,=Excellent=
"Hands down, best neutral nail color",=Excellent=
Nice scent....applied easily.,=VeryGood=
decent product but careful if skin is sensitive.,=Good=
Bought the brunette.  The color is kind of red-orange.,=Good=
I did not see results,=Unsatisfactory=
DONT KNOW HOW!! BUT IT IS REAL!!,=VeryGood=
please read this. you will be surprised as to why i gave it 4 stars,=VeryGood=
Bare Escentuals Full Coverage Kabuki Brush,=VeryGood=
Doesn't cover a brown girl,=Good=
Needs accompaniments to be feasible,=Poor=
BLUE JEANS for Men by Versace,=VeryGood=
doesn't seem to be working,=Poor=
Average product,=Good=
Long Eyelashes,=Poor=
Not that great,=Good=
Nice product,=Good=
Warning,=Poor=
"Worked amazingly, then amazingly didn't",=Unsatisfactory=
Turned my hair purple!,=Poor=
"If I Could Give This Moisturizer NEGATIVE stars, I Would!",=Poor=
Not recommended for sensitive skin,=Poor=
Review for eye cream,=VeryGood=
jade is the new black rocks!,=Excellent=
Didn't see results,=Unsatisfactory=
Light perfume of white flowers,=VeryGood=
A little goes a long way!,=Excellent=
Skin feels fresh!,=VeryGood=
Orgasm on your mouth.,=Excellent=
An uncomfortable and non-working product,=Poor=
Won't buy again,=Unsatisfactory=
Good Product,=VeryGood=
Addicted!,=Excellent=
Moroccanoil,=Good=
Stinks...,=Unsatisfactory=
It's awesome...highly recommend!,=Excellent=
Nice,=Excellent=
just start this gel,=Good=
Smell goes away!,=Excellent=
HARD TO PUT ON ESPECIALLY FOR BEGINNERS,=Poor=
"It works, sort of. But it's also kind of scary.",=Good=
"Eh, I can't tell if it's working",=Unsatisfactory=
Costs too much no matter how good it is.,=Poor=
Be Careful,=VeryGood=
CANCER CAUSING PARABENS,=Poor=
"REVIEWS at 3, 7, & 9 weeks",=Poor=
ok but....,=Good=
Successful Peel for a beginner,=VeryGood=
Dried out my hair,=Unsatisfactory=
not really what i thought,=Good=
Not really a fine mist.,=Unsatisfactory=
Nothing special,=Unsatisfactory=
My Only Bad Eucerin Product Review(causes breakouts),=Unsatisfactory=
No Changes Noted,=Poor=
Light Eye Cream - Still Puffy,=Good=
Sticky lotion flakes off face,=Poor=
Face Serum is OK,=Good=
Five Stars,=Excellent=
there are better options,=Unsatisfactory=
Not a fan,=Unsatisfactory=
Cashew nut allergy beware!!,=Poor=
Much better than what I was using.,=Excellent=
Doesnt hydrate,=VeryGood=
Love It,=VeryGood=
Only use a dab!,=VeryGood=
weird immediate color,=Good=
Soothes painful ears -- but not for sensitive noses!,=Good=
Great product,=Excellent=
meh its okay,=Unsatisfactory=
Shower Tangles No More!,=Excellent=
The Smell Is Awful!,=Poor=
Didn't heat up,=Good=
Love this mascara,=VeryGood=
Dmae fluid works!,=Excellent=
Magic,=VeryGood=
Vivo Moisturng Day Cream,=Poor=
Saved my scalp,=Excellent=
Bought it for others,=Good=
Fair & White exfolliating soap,=Unsatisfactory=
Fantastic hand cream,=Excellent=
slightly small,=Good=
"Not what it used to be. Now the \new coke\"" version""",=Poor=
"Cheap,cheap, cheap. You Get What You Pay For. Say NO.",=Poor=
Prefer this to Eucerin...,=VeryGood=
Great product.,=Excellent=
"Immediate relief, but not complete",=VeryGood=
Acne treatment,=Good=
Maybe for the winter or fall,=Unsatisfactory=
BEST Moisturizer for Acne-Prone Skin,=Excellent=
Concealer,=Poor=
The Scent that Brings Back Memories,=VeryGood=
love it,=Excellent=
Not too thrilling.,=Unsatisfactory=
Like it!,=Good=
evaluation,=Unsatisfactory=
Useless for Most,=Poor=
Makes Hair Fall Out...  Buyer Beware!!!,=Poor=
Can harm skin after using for a time,=Poor=
Smells and feels great but dried my skin out,=Unsatisfactory=
it's excellent!,=Excellent=
Bad quality,=Poor=
Doesn't last & allergic reaction,=Poor=
No Way does this smell like a creamsicle...,=Good=
Bad smell,=Poor=
You'll forget you're wearing foundation,=VeryGood=
It Arrived!,=Poor=
dissapointed,=Unsatisfactory=
"okay, but mine doesnt last",=Unsatisfactory=
Filler,=Unsatisfactory=
Nice smell,=VeryGood=
it does the job,=Good=
Did not work for me,=Unsatisfactory=
Nice reddish burgundy shimmer,=Excellent=
works well,=VeryGood=
One of my favs for a man,=Excellent=
Decent but has a strong odor,=Good=
This product works.,=Excellent=
Good,=VeryGood=
waist of my money,=Poor=
"huge, awkward for travel",=Unsatisfactory=
Works well but......,=VeryGood=
Perfect for eyes,=Excellent=
Frownies work better than any cream I've used,=Excellent=
Nice moistureiser,=Good=
No lasting results,=Unsatisfactory=
NOT FOR ME,=Good=
Works Wonders!,=Excellent=
Feels incredibly drying!,=Unsatisfactory=
Total waste,=Poor=
Soft bristles,=Good=
Just ok.,=Good=
Great Toner,=Excellent=
I have long lashes now only took three months,=Excellent=
Overrated,=Unsatisfactory=
"Hair, and scalp healthier",=Good=
Caution to Contact Lens Wearers,=Poor=
Not worth it to me,=Unsatisfactory=
Too fragrant,=Unsatisfactory=
JUST okay,=Good=
Eye shadow,=Good=
Great Waver/Crimper!,=VeryGood=
The Best Scent,=Excellent=
Pretty good,=VeryGood=
Not sure,=Good=
"Does have good scrub not too soft, It's okay",=Good=
Not Bad,=VeryGood=
good,=Excellent=
Too Much Lather,=Good=
Cool baby pink,=VeryGood=
Not for me,=Poor=
please,=Poor=
Absolute Garbabe,=Poor=
I'm comparing this to Sebastian hair spray,=Poor=
Leaked,=Poor=
Don't Waste Your Money,=Poor=
Very impressed,=VeryGood=
I don't see what the fuss is,=Good=
Conair Super Clips,=Good=
No bueno for me.,=Unsatisfactory=
great religious experience for those collecting the money,=Poor=
Perhaps Formula Has Changed?,=Poor=
Well....,=Good=
Flakes!,=Poor=
Average cleanser,=Good=
Disappointing product from SH,=Unsatisfactory=
Not As Quiet As Described.,=Good=
"Rather toxic treatment, nothing luxurious",=Poor=
Light and Effective!,=VeryGood=
Not that great.,=Good=
It holds; but very sticky,=Unsatisfactory=
Nice and natural + smells good!,=Excellent=
Favorite,=Excellent=
Good moisturizing,=VeryGood=
Very badly burned,=Poor=
Really like this,=VeryGood=
Dissapointed,=Good=
Works if you have a certain type of skin / pore,=Good=
Stamp and Scrape,=VeryGood=
Good Product,=Excellent=
Only Okay,=Good=
Ok if you don't have tea tree handy,=Good=
so so,=Good=
Unimpressive & smells AWFUL,=Unsatisfactory=
ONLY 1% H.A.,=Poor=
totally addicted!,=Excellent=
What a let down!,=Poor=
Absolutely not meant for my hair,=Unsatisfactory=
This Garbage gave me bald spots (repost),=Poor=
Save your face and wallet!,=VeryGood=
Very Strong vamilla smell,=Good=
doesnt work,=Unsatisfactory=
Thought I could use it for foundation but it's more a finishing powder,=Unsatisfactory=
Not bad,=VeryGood=
Don't waste your money this does not do anything to hair ...,=Poor=
Not for oily hair.,=Unsatisfactory=
Great Experience for Your Cuticles!,=Excellent=
The smell - holy moly!,=Unsatisfactory=
best thing about this perfume is the bottle,=VeryGood=
Works Well But I Prefer Spornette,=Excellent=
"Creamy, smooth and citrus-flavored night cream!",=Good=
Not sulfate free,=Unsatisfactory=
A little goes a long way,=VeryGood=
Just ok,=Unsatisfactory=
"Good for length, not so much for thickness",=Good=
Not very good - spend a little extra for something better,=Unsatisfactory=
"Good product, but overpriced - seller deceptive",=Unsatisfactory=
The chunky pencil works better,=Unsatisfactory=
great for sensitive skin and noses!,=Excellent=
Doesn't affect color much.,=Good=
Easy storage,=Excellent=
Looks Can Be Deceiving,=Poor=
Ehhhh,=Unsatisfactory=
A TRUE list of ingredients!,=Poor=
Was not pleased with this product,=Unsatisfactory=
Flawed Design,=Poor=
Doesn't stick,=Unsatisfactory=
My favorite lip gloss,=Excellent=
"Generally effective, but has several drawbacks",=Unsatisfactory=
Not a fan,=Poor=
"Some softness, but not much else.",=Good=
Moving along...,=Unsatisfactory=
Old product,=Poor=
Goes a long way,=Good=
Okay,=Good=
good,=VeryGood=
Allergic Reaction,=Good=
An ok product,=Good=
very light,=Unsatisfactory=
"A good fragrance, but nothing extraordinary...",=VeryGood=
Not so good,=Unsatisfactory=
Kinda works...?,=Poor=
great for acne prone skin!,=Excellent=
fabulous mac at a great price,=Excellent=
Mostly air.,=Poor=
not happy,=Unsatisfactory=
STINKY AWFUL,=Poor=
a decent gloss,=Good=
not that great,=Unsatisfactory=
Good Cleanser,=VeryGood=
works great.. but i added a trick to help,=VeryGood=
HATE IT!!,=Poor=
Nice but wish it did more,=Good=
Great acne cleanser - WONDERFUL with Clarisonic,=Excellent=
Beware!,=Unsatisfactory=
Suggested by my dermatologist,=Excellent=
Nice travel set,=VeryGood=
wish i could return it,=Poor=
Deep lavender and lemon in a bright blue seaweed bath!,=Excellent=
It's ok I guess...,=Good=
Dry bronzer,=Good=
"Great product, too expensive and too small",=Good=
Not worth the money-,=Poor=
Very Drying shampoo!!,=Poor=
Looks sweet....for a day!,=Good=
Awesome hand cream,=Excellent=
Worst Breakout I Have Every Had!,=Poor=
What Can I Say?,=Poor=
Very good magnification,=VeryGood=
beautiful neutral pink,=Excellent=
Its okay,=VeryGood=
wish it was faster,=VeryGood=
Pure rose essence,=VeryGood=
Refreshing.....,=Excellent=
great color,=Excellent=
Not very musk,=Good=
Not worth the money!,=Unsatisfactory=
Did not work!,=Poor=
Great for my shoulder length hair,=Excellent=
MADDD!,=Poor=
Take it or leave it,=Good=
Can't Live Without!,=Excellent=
PREMIER DEAD SEA LUXURIOUS ANTI-AGING NECK CREAM,=Good=
flattering,=VeryGood=
Nectar and tawny are both wonderful,=Excellent=
Don't Buy!!!,=Poor=
doesnt work,=Poor=
"Quick and easy, but a bit drying",=VeryGood=
"Just \OKAY\"" on my hair""",=Good=
IT WAS NOT GOOD FOR MY ALREADY DRY HAIR B/C...,=Unsatisfactory=
"Overpowering \fragrance\""""",=Poor=
"Good idea, bad design",=Good=
"well built-feels high quality, but not for me",=Good=
blegh,=Unsatisfactory=
Smells wonderful - but might be a bit too strong,=Good=
Works great,=Excellent=
I haven't used the Duo Water Proof  Eyelash Adhesive Dark Tone -o.25,=VeryGood=
Pretty decent,=VeryGood=
Okay,=Good=
Okay product!,=Good=
not good,=Poor=
Immerse in the Big Blue,=Excellent=
Awesome clarifying product,=Excellent=
Nothing special--but it makes bubbles...,=Good=
ummmm,=Unsatisfactory=
I received only half bottle of it!!!!!!!!,=Poor=
like the product,=Good=
Highest Carcinogen Titanium Sunscreen ...,=Poor=
Contains Parabens,=Poor=
It's a 10 but...,=VeryGood=
Bubble bath nice light color,=VeryGood=
"Tried it once, sent it back",=Poor=
Get what you pay for,=Unsatisfactory=
Waste of money- so dissapointed.,=Poor=
the cutest!,=Excellent=
Want your skin to look and feel Amazing?,=Excellent=
Just average--not a miracle worker.,=Unsatisfactory=
too harsh on sensitive skin.,=Unsatisfactory=
Sensitive Skin Users Be Cautious!,=Good=
Nature's cure two-part acne treatment,=Poor=
Great.,=Excellent=
Very little scent straight from the bottle,=Unsatisfactory=
Good but expensive,=VeryGood=
Not so hot...,=Unsatisfactory=
Cheap copy!  Update!,=Poor=
Doesn't live up to its promises,=Poor=
Don't like it,=Unsatisfactory=
Good night cream.,=Excellent=
Don't waste your money!,=Poor=
maybelline expert wear eyeshadow,=Good=
Wasn't impressed,=Poor=
Love,=Excellent=
"Caused Acnegeddon on my scalp, face, neck; not 100% oil",=Poor=
Philosophy when hope is not enough,=VeryGood=
Free and Clear Cleanser,=Excellent=
Lanza Healing Trauma Treatment,=Unsatisfactory=
No so goot at straightening but good at other features!,=Poor=
Leaves  my hair shinny,=VeryGood=
beautiful pink,=Excellent=
Doesn't cure the circles and stretches the skin,=Unsatisfactory=
horrible!,=Poor=
Disapointed,=Poor=
I can NOT use it alone - itches terribly!,=Poor=
Made My Hair Worse,=Poor=
5 Star Conditioner!! CG Friendly!!!,=Excellent=
Not the Original Formula,=Good=
Unpleasant tingling,=Poor=
good one,=VeryGood=
"Can't say anything about jojoba in it, but it's great as is.",=Excellent=
Your Basic Soap,=Unsatisfactory=
Very disappointed- strips hair color!,=Unsatisfactory=
Came cracked!,=Poor=
good stuff,=Excellent=
Very strong,=Good=
Hmm... I'd stick to lipstick.,=VeryGood=
"Love its affects, just not the smell too much",=VeryGood=
just a waste of money,=Poor=
A less expensive alternative,=Unsatisfactory=
Delivers on Promises,=Excellent=
Happy overall.,=VeryGood=
nothing compared to the salux,=Poor=
Does not last,=Poor=
It's a headband,=VeryGood=
The Creme De La Creme of Creams!,=Excellent=
Not great,=Unsatisfactory=
Not good for acne-prone skin.,=VeryGood=
Translucent Matte that glow ?,=Poor=
"LOVED IT, I dyed my little sisters hair",=Excellent=
Makeup finishing spray,=Unsatisfactory=
sealing serum,=Good=
it is ok,=Good=
makes my skin itchy with rash,=Poor=
Too sticky for me but definitely protects,=Good=
Not really,=Unsatisfactory=
Exactly What I've Been Looking For!,=Excellent=
eh...,=Good=
Great Dryer,=VeryGood=
I love Essie but I don't love this one...,=Unsatisfactory=
nuetral review,=Good=
OMG...Ojon....The Best Ever,=Excellent=
Love it,=VeryGood=
I feel so dainty and lovely when I use this,=Excellent=
not so soft,=Unsatisfactory=
Save your money,=Poor=
Waste of money,=Unsatisfactory=
Green Tea By Elizabeth Arden For Women. Eau De Parfum Spray 3.3 Ounces,=VeryGood=
Its Worth Your Money!!!!!!,=Excellent=
Blah...,=Poor=
Not that bad...,=VeryGood=
I don't think I've ever before loved a brush...,=Excellent=
Color fast but leaves hair feeling dry,=Unsatisfactory=
best face lotion ever,=Excellent=
Not sure what  I'm getting from this .,=Unsatisfactory=
Not for me!,=Unsatisfactory=
DO NOT. I REPEAT. DO NOT. BUY THIS,=Poor=
Okay,=Good=
2 WORDS----IT  WORKS !!!,=Excellent=
Barely any scent,=Good=
Motions At Home Deep Penetrating Treatment Conditioner,=VeryGood=
dont love it,=Unsatisfactory=
I'M A TRUE BLUE CONVERT!,=Excellent=
terrible bb cream,=Poor=
Last short!,=Unsatisfactory=
Does the job,=VeryGood=
Only foundation I will ever use,=Excellent=
So far so good,=VeryGood=
"Okay product, but nothing magical - same as conditioner",=Good=
Smells Like Febreze !!!,=Unsatisfactory=
Pain With No Gain,=Unsatisfactory=
Really great,=Excellent=
Use lightly in the Winter ...,=Good=
"Product Works, the Scent Doesn't",=VeryGood=
4 best Tool Shapeners Compared,=Good=
Indifferent,=Good=
Itchy welts broke out on the back of my neck!,=Unsatisfactory=
Makes my hair flat,=Unsatisfactory=
packaged poorly,=Good=
Not really sure that it's working,=Good=
Really Helps,=VeryGood=
Not Straight,=Unsatisfactory=
ITEM ARRIVED DAMAGED,=Poor=
Yummy..,=Excellent=
Good little bottle,=VeryGood=
Great product but not taken care of,=VeryGood=
It's good,=VeryGood=
yup,=Good=
Just what I wanted,=Excellent=
Neutrogena T/Gel Shampoo,=VeryGood=
Doesn't Work.,=Poor=
Not happy. Negative results.,=Poor=
Nearly Effortless Styling,=VeryGood=
Perfect Pale pink,=Excellent=
No thrilled - but perfect fro travel,=Good=
Great cologne,=VeryGood=
Almond Castile Soap,=Good=
Shedding the 1st time used,=Unsatisfactory=
bareMinerals - Returned,=Unsatisfactory=
Meh.,=Good=
Worthless,=Poor=
"Takes a while to heat up, but good",=VeryGood=
black soap,=Good=
Meh - Changed my mind,=Unsatisfactory=
"Great curl refresher, but you must use it correctly!",=VeryGood=
"Awful, unless you love doing laundry",=Poor=
Ok for some.,=Good=
"Whew, this stuff has a kick!",=Unsatisfactory=
Pureology Anit-Fade Complex Hydrate Shampoo,=Excellent=
Blah,=Unsatisfactory=
Its cheap,=Unsatisfactory=
"So far, so good!",=VeryGood=
No Noticeable Difference,=Unsatisfactory=
good product,=VeryGood=
Meh. Chalky,=Unsatisfactory=
AN EYELINER THAT CRACKS THEN FLAKES,=Poor=
No pigmentation!!!,=Unsatisfactory=
great,=VeryGood=
Serves its purpose but could be better,=Good=
Nothing special,=Poor=
Horrible,=Poor=
These are great for practicing with,=Unsatisfactory=
Smells strange and My Skin disliked this!,=Poor=
Don't Waste Your Money,=Poor=
speeds up bad acne fading,=Excellent=
GGGRRRR!!!!!!!!,=Poor=
Zoya fav!,=Excellent=
The product is not bad.,=Good=
"Hair Ripper, Hair Breaker...",=Poor=
"Well, I'm unimpressed with these",=Unsatisfactory=
"So far, so good",=VeryGood=
Whole different set than shown in pictures,=Unsatisfactory=
The greatest Product ever,=Excellent=
"I mean, it's not super-durable or anything",=VeryGood=
Broke after 2 uses,=Poor=
"NASTY, NASTY, NASTY.",=Poor=
Not What I Thought,=Unsatisfactory=
Smells funny...,=Unsatisfactory=
Just buy it!,=VeryGood=
love it,=Excellent=
Didn't last :(,=Unsatisfactory=
Just doesn't curl...,=Poor=
BUYER BEWARE,=Poor=
Moisturizing Cream Did not Impress Me,=Unsatisfactory=
Is this product tested on animals?,=Good=
"Be warned, this sunblock IS NOT water proof! ...",=Good=
It irks okay,=Good=
This could have been great,=Unsatisfactory=
Ugly & sheds,=Poor=
Great cleanser!,=Excellent=
"Sadly, not impressed",=Unsatisfactory=
Excellent,=Excellent=
THE SMELL YUCK!,=Good=
Horrible flaking!,=Unsatisfactory=
Rather overpowering,=Unsatisfactory=
No results,=Unsatisfactory=
Ho-hum--nothing THAT different from what's already out there,=Good=
Works well.,=VeryGood=
Not wide tooth,=Unsatisfactory=
worst cologne...,=Poor=
Not bad :),=VeryGood=
Great In A Pinch Easy To Use Fair Results,=VeryGood=
Enjoy this product daily!,=Excellent=
Update to my other review,=Unsatisfactory=
Stains too easily,=Unsatisfactory=
Teeth Too Thick,=Unsatisfactory=
Not really useful.,=Good=
Silly Putty for your face,=Poor=
Does what it claims! I noticed difference the next day!,=Excellent=
"Seriously, eStores?",=Poor=
Worst piece of junk I ever bought; fell apart after using 3-4 x's,=Poor=
hair stuff,=Poor=
Some people do not care for the customer,=Poor=
Love it so far,=Excellent=
Not worth it,=Poor=
Three Stars,=Good=
I like it ... but don't love it..,=Good=
Ok- but clumps,=Good=
Not so great,=Unsatisfactory=
Awesome!,=Excellent=
I love the way it works,=Excellent=
Not too impressed...,=Good=
a pretty unit...,=Good=
"\Eraser\"" is a bit too potimistic of a word""",=Good=
Hate this primer,=Poor=
"Refining \Mask\""""",=Good=
"Thick, crusty, impossible",=Unsatisfactory=
HORRIBLE- EACH CANE IS 2cm and really tiny. Smaller than my last finger. Smaller than an eraser.,=Poor=
Tutti Fruiti Tonga,=Excellent=
"Doesn't Sting, Smells Wonderful",=Excellent=
Great face and all-over body cleanser,=Excellent=
Great soap and scent,=Excellent=
Just a bit of advice!,=Excellent=
ITS COOL,=Good=
I love NYX however this might be a fake?,=Unsatisfactory=
What a complete ripoff,=Poor=
Excellent compact hair dryer,=VeryGood=
It's 0kay.,=Good=
The Perfect Blowdryer For My Baby Fine Hair!,=Excellent=
so/so,=Good=
Thick soft finish,=Unsatisfactory=
Goood,=VeryGood=
garbage,=Poor=
Daughter likes it!,=VeryGood=
"Age Repair Good, Wrinkle Cream Bad",=Good=
OK,=Unsatisfactory=
The first two ingredients are water and glycerin,=Poor=
Practically Perfect,=Excellent=
It Works,=Excellent=
I Love Everything Rusk! ;*,=Excellent=
This is my favorite skin care.,=Excellent=
Can't smell after a while.,=Good=
Super bright! Hurts eyes a bit.,=Good=
Agreeing with almost everyone else,=Excellent=
Too much hype.,=Unsatisfactory=
RUSH TO BUY THIS BLUSH,=Excellent=
Worth a try,=VeryGood=
does the job,=Excellent=
"Not instant magic, but works all the same",=VeryGood=
Worst nail file ever!,=Poor=
Not worth it,=Unsatisfactory=
Bottle dried up too quickly.,=Good=
Love this Cream!!!,=Excellent=
Use only if your hair is really dry (or has texture)...,=Unsatisfactory=
Smells good,=VeryGood=
Wonderful results so far,=VeryGood=
great conditioner,=Excellent=
Makes my hair  hard,=Poor=
I have switched!,=Excellent=
"This picture doesn't belong with the product since you only get one brush, the 2.5 Barrel",=VeryGood=
Bronze Glow,=Unsatisfactory=
DIDNT LIKE,=Unsatisfactory=
So pale I can hardly tell I'm wearing anything,=Poor=
YOU CAN'T GO WRONG WITH THIS PRODUCT,=VeryGood=
seems to be working,=Good=
doesnt really do anything,=Poor=
Expected More,=Unsatisfactory=
This is For African-Type Hair,=Good=
Poor quality soap,=Poor=
Not for me,=VeryGood=
Five Stars,=Excellent=
NOW Foods Apricot Oil from amazon.com,=Excellent=
it was okay,=Good=
It's okay but not perfect,=Good=
Wouldn't use anything else,=Excellent=
Fabulous product!,=Excellent=
I thought it would be better,=Unsatisfactory=
Looks nothing like the picture,=Poor=
This product is a miss for me,=Good=
Smells nice....when I can smell it.,=Good=
Hate it.,=Poor=
Great Product,=Excellent=
Surprisingly good quality at the price,=VeryGood=
Does not diminish fine lines,=Good=
It works!,=VeryGood=
No such luck,=Unsatisfactory=
Very happy with this curler,=VeryGood=
ehh,=Poor=
Not as light as it thinks it is,=Unsatisfactory=
Didn't feel like it worked,=Good=
Good color,=VeryGood=
"Good, but only to use at night",=VeryGood=
Doesn't remove makeup,=Unsatisfactory=
Perfect for my skin but a little pricey,=VeryGood=
So-so,=Good=
Goes on muddy,=Good=
LIKE WAX,=Poor=
Better on dry hair than on wet,=VeryGood=
It's a shame it was discontinued.,=Excellent=
I love Hempz products but.....,=VeryGood=
So So,=Good=
Saved my nails,=Excellent=
does not do what they say,=Unsatisfactory=
Good all natural product,=Good=
Just okay,=Good=
Nothing Special,=Good=
Oprah's Choice and Mine,=Excellent=
The colors online are misleading,=Poor=
It dries hair.,=Good=
Ok,=Poor=
Average shampoo,=Good=
"Very nice to use, helps skin.",=VeryGood=
DISAPPOINTED!!,=Poor=
My sensitive combination skin loves this,=Excellent=
Used to keep hair back while washing face,=Good=
Not quite poreless,=Unsatisfactory=
Not for me,=Unsatisfactory=
"SHORT, small brush",=Unsatisfactory=
Take my advice.,=Poor=
Limited use hairdryer for long hair only,=Good=
Unimpressive as foundation substitute. Holds promise as foundation primer.,=Good=
alright,=Unsatisfactory=
"It's not a miracle cure, but you can see results",=Good=
"not a masterpiece like Dior Homme or YSL L'homme, but very close",=VeryGood=
"Fresh, Clean, Feminine - My daughter loves this scent",=VeryGood=
Not sure what is intended use,=Unsatisfactory=
Not a fan,=Unsatisfactory=
Didn't work for me,=Poor=
Good and smooth,=VeryGood=
Very nice eyelash glue!!,=VeryGood=
I love it,=VeryGood=
"Awful, cheap product",=Poor=
CAME IN ONE BIG CRUMBLY MESS,=Poor=
No noticeable results,=Unsatisfactory=
didn't work on me,=Poor=
Frizz ease pleassssse,=Unsatisfactory=
"works fine, but I see no difference vs regular non-ionic dryer",=Good=
Nice fragrance but it just doesn't linger long enough!,=Good=
It's ok,=Good=
aveda,=Good=
Lasts forever!,=VeryGood=
idk what happened,=Good=
Still trying it,=Good=
greta,=Excellent=
Described accurately but not long lasting curls.,=Good=
"Felt Great on Skin, Did not Lighten ANYTHING!",=Unsatisfactory=
so far so good,=VeryGood=
AWFUL!  BURNT BBQ IS WHAT IT SHOULD BE!,=Poor=
I like it!,=Excellent=
Grow Edges,=Good=
Sure!,=Excellent=
Over all good product,=Good=
"Wow, what a great tool",=Excellent=
soft,=VeryGood=
Not yet quite perfect just yet...,=Good=
A favorite,=Excellent=
Expensive and you will blow through it quick,=Unsatisfactory=
I love this Conair Hot Air Curling Combo,=Excellent=
"Great idea, but the color enhancer is horrible",=Good=
Not great!,=Unsatisfactory=
Revlon Shine Enhancing hair styler enhancer,=Excellent=
Works Well But Is Not 'Simple',=Unsatisfactory=
Looks like its been opened??,=Poor=
not for fine wavy hair,=Poor=
Just okay.,=Good=
Great "fat" hair in dry climate; not so "fat" in humid one!,=Good=
Yeesh,=Unsatisfactory=
"I'm note sure if it works, but I feel like it does",=VeryGood=
I like it,=VeryGood=
Leaves my hair feeling great.,=Excellent=
Not Dermalogica's best,=Good=
Okay,=Good=
great product but not for subtle looks,=VeryGood=
A Waste!,=Poor=
"Poor quality, 2 of them cracked within weeks of purchase",=Poor=
Really Great Peppermint Lotion,=Excellent=
I see no noticeable difference,=Unsatisfactory=
ehh,=Poor=
Night cream,=VeryGood=
I use it for almost EVERYTHING!,=Excellent=
"Cheap is the word, not inexpensive!",=Poor=
so la la...,=Unsatisfactory=
Use on thick AA afro curly coily hair,=Good=
makes you soft to the touch,=VeryGood=
"Just \okay\"" so far...""",=Good=
A Treat for Beat Feet!,=VeryGood=
oil of oregano 1oz,=Good=
Nice soap,=VeryGood=
An OK Oil,=VeryGood=
Too small for most thumb nails,=Good=
Excellent product...but,=VeryGood=
Not a fan,=Unsatisfactory=
Does what it says,=Good=
Smell Good,=Excellent=
Waste of money,=Poor=
Haven't even brought it and know it's fake,=Poor=
Not for me,=Unsatisfactory=
"Not a sonic cleaner; damages your upper skin layer, comparison to Clarisonic and Nutrasonic.",=Poor=
Best hand lotion,=Excellent=
They changed the formula,=Unsatisfactory=
Delivers What It Promises,=VeryGood=
Good value,=VeryGood=
Not great for Acne Prone Skin,=Unsatisfactory=
"Like how it works, not how it feels",=Good=
Not for people with arthritis,=Good=
Like the Hydrox Line,=Good=
Love this color!,=Excellent=
Soak off gel wraps,=Unsatisfactory=
Fresh,=Unsatisfactory=
Heavy!  Very Heavy duty ...,=Good=
"Cheap,useful, and popular",=Good=
I had some real issues w/this product - read ingredients! :(,=Poor=
works!,=VeryGood=
Maybelline New York Dream Matte Mousse,=Good=
Not for me!,=Unsatisfactory=
Nothing spectacular...,=Unsatisfactory=
Love this product.,=VeryGood=
Not Effective and too Expensive,=Poor=
"Great product, bad shipping.",=Good=
Not for me,=Good=
Creamy and smooth,=VeryGood=
I like it.,=VeryGood=
FAR TOO SWEET SMELLING,=Poor=
I do not like it.,=Good=
hmm,=VeryGood=
-,=Good=
Good product,=VeryGood=
Thick,=Good=
Works great!,=VeryGood=
Don't Buy,=Poor=
Good product,=VeryGood=
easy to use,=VeryGood=
Stains pillow,=Poor=
Staple in my daily makeup routine,=Excellent=
Forget it,=Poor=
Super smelly!!,=Unsatisfactory=
Great color,=Excellent=
Bad item,=Poor=
Great product,=Excellent=
Disapointed,=Good=
Got the 2 inch,=Excellent=
I cannot get this to work right.,=Poor=
"Funny color at first, then mellows",=VeryGood=
It's good.,=Good=
this light weight emulsion eye cream is just what the ...,=VeryGood=
50% useful,=Poor=
quick touchup stick,=VeryGood=
Perfect Nude Pink!,=Excellent=
My new favorite brush!!,=Excellent=
Starts out good but eventually back to dry,=Good=
Its not too good,=Unsatisfactory=
disappointed,=Poor=
"Great Colour, Not So Great Conditioner",=Good=
Good results so far.,=VeryGood=
Best dish soap around,=Excellent=
good for the price,=VeryGood=
Too much Fragrance!  Cream is heavy.,=Good=
It works fine but use carefully,=VeryGood=
Nice bath brush,=VeryGood=
Can't live without it,=Excellent=
works fine,=VeryGood=
Palmer's Skin Therapy Oil,=Good=
Great cleaser; terrible pump,=Good=
It may be a great product but the smell made me gag,=Poor=
This relaxer is an OVERRATED joke!,=Poor=
Looked purple,=Poor=
Great hair stuff!,=Excellent=
It gets the job done,=VeryGood=
Okay....,=Good=
Blegh,=Poor=
Decent For A Gel,=Good=
NARS Orgasm Shimmer Nail Polish,=Unsatisfactory=
good idea but doesn't live up to expectations,=Unsatisfactory=
Not Bad,=Good=
The best out there,=Excellent=
Nothing special - just an expensive lip gloss,=Good=
Terrible/Rip Off,=Poor=
They should have more stars!,=Excellent=
Does not do what it claims,=Poor=
this isn't what i expected,=Unsatisfactory=
Powerful scent,=Unsatisfactory=
"yes, they look ridiculous but they work",=Excellent=
Not my favorite...,=Good=
"Did not work, left hair even more brittle.",=Poor=
Good but not great,=Good=
Great Dryer,=VeryGood=
BRING IT BACK AMAZON,=Poor=
Forever ago.,=Good=
It is an interesting product,=VeryGood=
Yummy,=Excellent=
Can't rate this low enough,=Poor=
Im not amazed with this lipstick.,=Unsatisfactory=
WTF,=Unsatisfactory=
Great Buffer,=Excellent=
Poor Results,=Unsatisfactory=
By Tracey,=Unsatisfactory=
The Best So Far For Dry Flaky Hands,=Excellent=
Didn't work for me,=Unsatisfactory=
Smells like gingerbread,=Good=
Very good product but moisturising cream is missing,=Excellent=
It works Very Very moderarely,=Unsatisfactory=
Really Nice Natural Shampoo - smells great!,=VeryGood=
Great product,=Excellent=
Cleans my hair and leaves it soft and managable,=Excellent=
"They stay in well, and live up to the name",=Excellent=
Virtually scent-free,=Unsatisfactory=
Did not like,=Poor=
Real results,=VeryGood=
Couldn't believe it,=Excellent=
No difference in my dark circles!,=Poor=
"Fresh, clean, light fragrance. Not overpowering and pleasantly subtle.",=VeryGood=
Not a very strong Retinol,=Unsatisfactory=
Olay Regenerating Serum,=Excellent=
Not for those with pigmented lips...,=Good=
OUCH! Takes your skin right off,=Unsatisfactory=
Does work,=VeryGood=
Nice but,=Good=
Nothing,=Poor=
cant make it work,=Poor=
Not the same,=Unsatisfactory=
Allergist recommended,=Excellent=
not a good buy,=Unsatisfactory=
Pretty good,=VeryGood=
Not for me,=Poor=
"Invisible, unsmellable, effective",=Excellent=
Really hopeful about this cream...,=Poor=
Mezza mezza,=Good=
A little too greasy but I still like it..,=VeryGood=
Great product!,=Excellent=
The lighting isn't aligned correctly,=Unsatisfactory=
No thank you!,=Unsatisfactory=
"Not a miracle worker but a high quality, non-drying cleanser",=VeryGood=
Guess by Guess,=VeryGood=
Careful if you have allergies,=Good=
No Bull..Olay..~!~,=Excellent=
the perfect cuticle oil!,=Excellent=
Worth the price,=VeryGood=
Works just like it says it will,=Excellent=
wish i didn't feel the way i did,=Unsatisfactory=
Perfect product.,=Excellent=
great for my 3-year-old,=VeryGood=
i hate this pomegranite wen!!!,=Poor=
Clean Alluring Scent.,=VeryGood=
"For a Quiet Dryer, It's Just Okay",=Good=
Nice product,=VeryGood=
DONT WASTE YOUR MONEY,=Poor=
pilled,=Poor=
A little disappointed,=Good=
I can't believe this works for my acne-prone skin,=VeryGood=
Great alternative to lotion,=Excellent=
"Good moisturizer, but not for face",=VeryGood=
Great hair treatment,=VeryGood=
Eh. So so.,=Good=
"eh, could be better.",=Good=
This stuff is wonderful,=Excellent=
Apply with caution!,=Poor=
Was great while it lasted,=Unsatisfactory=
It's just alright.,=Good=
"LOVE the color but the formula could be better, hence the 4/5 stars",=VeryGood=
I love it!,=Excellent=
It smells divine and love it but by the time it is half empty ...,=Unsatisfactory=
Quickly dulls. Doesn't catch nails.,=Unsatisfactory=
Not for me,=Unsatisfactory=
A bit too light for my face but is gentle on my sensitive skin,=VeryGood=
eh,=Unsatisfactory=
Pretty good,=Good=
Not a fan,=Poor=
"Excellent, real makeup sponge. Durable.",=Excellent=
Should be call Lift nail primer,=Poor=
excellent performance but quality could be better for the price,=VeryGood=
Different,=Unsatisfactory=
does a good job,=VeryGood=
I would recommend it,=VeryGood=
Works pretty well.,=VeryGood=
Stays on all day,=Excellent=
It is not a good tool.,=Poor=
doesn't exfoliate my skin enough,=Unsatisfactory=
Love love,=Excellent=
Great For Dry Skin,=VeryGood=
Garbage,=Poor=
Not as good as it used to be...,=Unsatisfactory=
Black Mascara,=VeryGood=
Works great,=VeryGood=
Does what it was meant to do.,=VeryGood=
Love this Outlast Lipcolor,=Good=
Meh,=Unsatisfactory=
Not for sensitive skin,=Unsatisfactory=
Great product!,=VeryGood=
Do not purchase!,=Poor=
Smells good.,=Good=
Cant really tell,=Unsatisfactory=
Perfect Skin,=Excellent=
Didn't work for me,=Unsatisfactory=
nothing special,=Good=
Only OK,=Good=
Good flat iron.,=VeryGood=
Cake eyeliner,=Good=
Huge,=Poor=
Pamper That Nose!,=Excellent=
Ok,=Unsatisfactory=
not like the silver,=Good=
AWFUL!!!!,=Poor=
"Calming, thick and great for night",=VeryGood=
Know your hair and do a skin test,=Unsatisfactory=
OPI is quality brand,=VeryGood=
keratin,=VeryGood=
you can do curls and waves,=VeryGood=
Very good,=VeryGood=
Reduces pores yet too strong for my eyes,=VeryGood=
Mellows a little as it dries,=VeryGood=
Difficult to work with,=Poor=
Smoothe Finish,=VeryGood=
OK…don't care for the smell,=Good=
Hair,=Poor=
Confused,=VeryGood=
Improvement In Tone,=VeryGood=
okay but not as good as the other style of clamp,=Good=
Useless! Did nothing!,=Poor=
This is the best drying iron I have ever owned,=Excellent=
"Heavy, Oily and Smells Horrible",=Poor=
Pleasantly surprised,=VeryGood=
i would not recommend this to my worst enemy,=Poor=
OK,=Unsatisfactory=
What's so great about this mascara?,=Poor=
"Horrible Now, Used to be Fabulous",=Poor=
So So,=Unsatisfactory=
NOT WHAT IT CLAIMS TO BE.,=Unsatisfactory=
This is a joke,=Poor=
Great Hair Setter,=Excellent=
love it !,=Excellent=
Did not Like,=Poor=
Best Moisturizer Ever,=Excellent=
Great for Acne,=Excellent=
Decent but with flaws,=Good=
My Least Favorite Tresemme Shampoo,=Good=
I can't believe I paid 3+ dollars for this!,=Unsatisfactory=
Ideal for lightly exfoliating around the eyelids/nose area,=Excellent=
Only for dry skin,=Good=
I did not like it,=Unsatisfactory=
u vl get what u pay for,=Poor=
Great stuff!,=Excellent=
No Good,=Poor=
baby powder scent,=Poor=
blackhead eliminator,=Poor=
Really haven't seen a major difference and my expectations were ...,=Unsatisfactory=
Hit or miss depending on your hair type,=VeryGood=
Terrible!,=Poor=
dang! it actually works!,=Excellent=
Nice,=VeryGood=
Right to Bare Legs.,=Poor=
"Gentle, pleasant, and effective -- what more can you ask for?",=VeryGood=
Hair became dull and dry,=Unsatisfactory=
Not for my face,=Unsatisfactory=
"It's okay, but not better than any $35-$40 cologne",=Unsatisfactory=
i was shocked,=Poor=
It's always something new...,=Poor=
just regular shampoo dyed red,=Good=
It doesn't work,=Poor=
Absolutely useless,=Unsatisfactory=
Not bad but I don't like that much,=Unsatisfactory=
Soft Skin,=VeryGood=
Pores begone,=Excellent=
Great,=Excellent=
Love this!!,=Excellent=
One of the few Vaseline's with an OK scent.,=Good=
works and gentle to your skin!,=VeryGood=
Not for me........,=Poor=
Exacerbates Rosacea,=Poor=
Very Subtle,=Good=
poor coverage,=Poor=
PTR AMAZING.,=Excellent=
A Hint of Granny,=Good=
Doesn't works for me,=Good=
i will never buy this again,=Poor=
Wonderful hand cream!,=Excellent=
"Non-greasy, frizz fighting and detangling",=VeryGood=
Dark color!,=Good=
not impressed,=Unsatisfactory=
Great face cleanser!!,=Excellent=
It's an average product for relaxed hair,=Good=
Was not that impressed...,=Good=
Looking forward to seeing more.,=VeryGood=
Just Okay for Me,=Good=
Honest Review (Would not recommend),=Poor=
Great IF,=VeryGood=
Good Hair dryer,=VeryGood=
The Best,=Excellent=
Nothing Really Special,=Good=
Hype hype hype.,=Unsatisfactory=
bad product and not working,=Poor=
Very moisturizing & lasts a long time,=Good=
Remarkable washable waterproof mascara,=Good=
"Kalahari NARS duo - great classic color combo, silky texture",=Excellent=
Makes you white,=VeryGood=
Great lotion,=Excellent=
IT smells!,=Poor=
"Great for dry, sensitive skin",=VeryGood=
Can't tell,=Good=
Great for removing make up!,=VeryGood=
Not for me,=Unsatisfactory=
VERY drying!,=Poor=
Love color,=Excellent=
Too Heavy on my Hair,=Unsatisfactory=
Not for me,=Unsatisfactory=
Been wearing them since I got them,=Excellent=
Feels Great!!,=VeryGood=
Not a fan,=Unsatisfactory=
This is not the mitt you are looking for... (waving my force laden hand),=Poor=
It's only good to use with hot tools.,=Unsatisfactory=
Not so great...,=Unsatisfactory=
Not sure if its work.,=Good=
"They did not work for me: slipped out, irrirated the skin, did not solve the problem",=Poor=
Disappointingly Oily,=Unsatisfactory=
Natural tan...even on pale skin!,=VeryGood=
TOMATOES,=Poor=
Fresh,=VeryGood=
Good for Some..Not Good for ALL,=Poor=
The best hand cream ever...,=Excellent=
"Love the product for sensitive skin, faulty pump",=Good=
Nice Wash for Sensitive Skin,=VeryGood=
Leaves weird sheen on skin,=Unsatisfactory=
bad product,=Poor=
"\Sheer French Color\"" is streaky and unnatural.""",=Unsatisfactory=
"Good smell, but not the best results for me",=Good=
Not so much,=Unsatisfactory=
Maybe it's just me...,=Good=
Three Stars,=Good=
they work but...,=Unsatisfactory=
Useless,=Poor=
"Love the stuff, dislike the smell",=Good=
2 1/2 months and NO improvement in pigment,=Unsatisfactory=
Love. Love. Love. Love. Love. Love.,=Excellent=
Neat solution to age-old problem,=Excellent=
No effect?,=Good=
Easy Wrapping and Easier Managing!,=VeryGood=
great for your hair!,=Excellent=
Okay...,=Good=
5 months after.. Good improvement!,=VeryGood=
Died after 16 months,=Poor=
healthy polish alternative,=Unsatisfactory=
Smells Pretty,=VeryGood=
Such a waste!,=Poor=
"Ok for everday use, but don't skip a day",=Good=
Coola,=VeryGood=
classic,=Excellent=
FRANKLIN,=Good=
Used to be great....,=Poor=
"Safe and Natural Looking, Just Don't Expect Knock-Out Lashes",=VeryGood=
am I doing something wrong?,=Unsatisfactory=
"Great smell, not long lasting.",=VeryGood=
Okay I guess,=Good=
"The sample size worked great, but this broke me out.",=Poor=
A nice serum,=Good=
You won't be disappointed.,=Excellent=
good product,=VeryGood=
Not a true natural cream.,=Unsatisfactory=
FAB Red that every one can wear,=Excellent=
Didnt work,=Unsatisfactory=
Great dryer overall - had to replace at 9 months,=VeryGood=
Pearl Powder,=Unsatisfactory=
"Hate this new powder, always looks chalky in any color",=Poor=
Don't let the first time fool you!,=VeryGood=
**WARNING!!!! ** DO NOT USE THIS!,=Poor=
Does its job.,=Good=
Way Better Than Drugstore Toners!,=Excellent=
The brush is perfect for applying nail art charms.,=Excellent=
Good buy for the price,=VeryGood=
Not worth a cent.,=Poor=
Very Rough,=Unsatisfactory=
Another Strike Out,=Unsatisfactory=
So far so good,=VeryGood=
Bad reaction to it,=Poor=
not as advertised,=Poor=
might not buy again,=Good=
"Works, but...",=Unsatisfactory=
Greasy & The smell is powerful,=Good=
Smells good but doesn't take off makeup,=Unsatisfactory=
NOT a fabulous Fake!,=Poor=
Pleased So Far,=VeryGood=
X-fusion applicator,=Unsatisfactory=
Not recommended,=Poor=
Okay,=Good=
Just as messy,=Good=
LOVE this tinted moisturizer,=VeryGood=
I don't like it,=Poor=
"Dried my skin out, after the third day of use!",=Poor=
The standard,=Excellent=
Will magnify your face to scary proportions,=Excellent=
Cleans,=Good=
Excellent,=Excellent=
Great tool!,=VeryGood=
Organix has the same thing for way less,=Unsatisfactory=
love this,=Excellent=
Terrible product! Made my facial lines appear deeper. It felt heavy like a mask. Scent was medical,=Poor=
Like a First Aid Kit in a Bottle!,=Excellent=
"Works OK, Not a Fan of the smell",=Good=
Not worth the money!,=Unsatisfactory=
use them for my hair extensions,=VeryGood=
"Good, but not for me",=Good=
Easy To Use Highlighting Pen Has Multiple Uses,=VeryGood=
Too difficult to use,=Unsatisfactory=
nothing special and it does NOT control oil,=Good=
Natural but Chemical-y,=Good=
Unproven and too expensive,=Unsatisfactory=
Didn't like the smell,=Unsatisfactory=
horrible color,=Poor=
Beauty Secret ... سر الجمال,=Excellent=
"LOVE THE AROMA,BUT",=Good=
Confused about other reviews - no allergies here,=VeryGood=
Don't waste your money,=Poor=
This is not like the similar ones in the mall,=Unsatisfactory=
Couldn't be more enthusiastic!,=Excellent=
"Good, but too scratchy!",=Good=
Seems to work well,=VeryGood=
Another great product from Earth Science.,=Excellent=
I love this lotion....and was quite surprised.,=Excellent=
doesnt work for me,=Poor=
Great for Lashes,=Excellent=
Burnt my face :(,=Good=
leaks,=Unsatisfactory=
Like this product,=VeryGood=
It was... Meh.,=Unsatisfactory=
It's too greasy/oily to be makeup,=Poor=
I'd give it 5 stars but...,=VeryGood=
Nothing special,=Poor=
Good Product,=VeryGood=
Creases and looks really weird after a while,=Unsatisfactory=
Ehhhhh,=Poor=
Seems to work well so far,=VeryGood=
Fave,=Excellent=
it works,=VeryGood=
Smells gross,=Unsatisfactory=
"I'll use the rest, but won't buy again",=Unsatisfactory=
Half pleased,=Good=
"Was hoping for a more dramatic result, oh well...",=Unsatisfactory=
luv it!!!!,=VeryGood=
Zapzyt,=Excellent=
"Good enough for me, a few minor issues",=VeryGood=
Don't like the smell...,=Good=
Broke me out,=Unsatisfactory=
Nothing Special,=Unsatisfactory=
It's okay,=VeryGood=
Nice brush,=VeryGood=
Don't do it,=Poor=
Easier to use than menstrual cups,=Excellent=
SOFT AND SUPPLE,=Excellent=
broke while i put on clothes,=Poor=
HORRIBLE,=Poor=
Son wouldn't use it,=Good=
Good,=VeryGood=
75/25,=VeryGood=
great product.,=Excellent=
Attention! The plates are NOT as the most helpful review says!,=Poor=
NO PRISMATIC EFFECTS,=Poor=
so far so good,=VeryGood=
Ivory,=Unsatisfactory=
Worked on my very oily scalp (after 2 weeks),=Excellent=
Beautiful Brush,=Excellent=
Extra strength shampoo,=Excellent=
Powerful Acrylic Gel,=VeryGood=
Terrible,=Poor=
Nice for work and daily wear but is barely noticeable after a few hours.,=VeryGood=
"works, wish it smelled different",=VeryGood=
Okay,=Good=
expensive shadow you can also use on your eyelids,=Poor=
Very Convenient,=VeryGood=
Worst shampoo i have ever used!! BIG waste of money!!,=Poor=
Rarely use this color out of all the other colors I own.,=Poor=
Neutrogena Lip Balm,=Excellent=
Try it,=Excellent=
Vanicream Fan,=Excellent=
Not the one for me,=Unsatisfactory=
Great make up sponge!,=VeryGood=
"actual color does not match the picture, goes on in one coat.",=VeryGood=
BUMMER!!,=Good=
THE BEST! Better than my own Dermatologist-prescribed acne-clearer,=Excellent=
Just a pitty...I did not receive it,=Unsatisfactory=
Your feet will thank you!,=Excellent=
Not great patchouli,=Unsatisfactory=
Its ok. Original poison is better after the two scents are settled.,=Unsatisfactory=
Simple one step cleansing...,=Excellent=
Not for wrinkles,=Poor=
It's just ok for me,=Good=
It's alright,=Good=
A Decent Conditioner,=Good=
So far So good,=VeryGood=
Strong when used with cleanser,=VeryGood=
Not the best scrubber,=Unsatisfactory=
"Very nice, but would like more moisturizing",=VeryGood=
yuck,=Poor=
Waste Of Time,=Poor=
VERY GOOD FOR SENSITIVE SKIN,=Excellent=
It's ok,=Unsatisfactory=
Not Waterproof!!,=Poor=
"I don't know what it's doing, but I like it",=Excellent=
They're Okay,=Good=
A Wet Mess,=Poor=
So many!,=Good=
Very  Much Like Another China Glaze polish,=VeryGood=
This is the worst product ive ever bought off amazon...,=Poor=
Left my hair feeling even grungier!,=Poor=
very dry,=Unsatisfactory=
My favorite,=Excellent=
"A Luscious lotion for those who enjoy very tropical, stronger scents.",=Good=
Great Product -- BUT BEWARE! MAY BE EXPIRED!,=Good=
Flimsy and not moveable,=Good=
did not work for me,=Poor=
It just stopped working,=Poor=
Not worth it $,=Unsatisfactory=
Did not remove mascara,=VeryGood=
Did not work for me the way I hoped.,=Unsatisfactory=
disappointed,=Poor=
"Just average, Doesn't live up to the hype",=Good=
"My first one worked wonderfully and lasted 2 1/2 years, so I'm getting another!",=Excellent=
I have to use a manual curler afterwards..,=Unsatisfactory=
Great face mask,=Excellent=
so-so,=Good=
Works great on feet,=Excellent=
Know your product!,=Excellent=
great product,=VeryGood=
Great for cheeks but not so much for lips,=Good=
Looked good!,=VeryGood=
Still a winner after many years,=Excellent=
came broken,=Poor=
Evening wear,=VeryGood=
"Color is strange,",=Unsatisfactory=
Love the smell but a shame it's not last as long,=Good=
Does the job,=VeryGood=
I think it CAUSES dandruff,=Poor=
Doesn't condition,=Unsatisfactory=
Helps heal pimples faster.,=Good=
It's OK,=Good=
Too sheer,=Unsatisfactory=
Overpowering smell for sensitives,=Unsatisfactory=
It's a brush!,=Good=
I really like how this feels,=VeryGood=
Makes no difference to me,=Unsatisfactory=
Clumpy!,=Good=
Choco-vodka?!?!?,=Poor=
Palladio Herbal Dual Wet and Dry Foundation,=Excellent=
formula is to runny and didn't notice a difference,=Unsatisfactory=
"Attractive, powerful, and it drys my hair faster.",=Excellent=
"Good for problem areas, not too great for older skin",=Good=
3 words,=Poor=
Uncomfortable,=Unsatisfactory=
This soap broke so easily.,=Poor=
Like you just applied a tub of oil to yourself,=Unsatisfactory=
Much prefer CeraVe for my son's eczema,=Unsatisfactory=
Generic Scrub Gloves - They Do the Trick,=Good=
Little more than a dollar store bargain,=Good=
"good for lips, not so much for cheeks",=Good=
Good product,=VeryGood=
Greasy looking after an hour,=Unsatisfactory=
Bush/Dotting tool,=Good=
Smelled funny,=Unsatisfactory=
Maybe I'm just a tiny exception to the Philosophy lovefest?,=Poor=
Three Stars,=Good=
Budget priced cosmetics,=Good=
Much darker than appears....,=Unsatisfactory=
Works nicely!,=Excellent=
love!,=Excellent=
"Great smell, very moisturizing",=VeryGood=
good,=Excellent=
Too frosty for me.,=Unsatisfactory=
The only soap we all agree on...,=VeryGood=
break out more.,=Unsatisfactory=
Smells Good,=Excellent=
Another waste of money....,=Poor=
nice smell,=Good=
Too Soft Really,=Unsatisfactory=
Absolutely not helpful,=Poor=
Kinda looks like a French manicure,=Excellent=
Skeptical at first but I love it!,=Excellent=
I think this product is really going to help.,=VeryGood=
not too impressed,=Good=
Eh...,=Good=
beautiful,=Excellent=
Good product for the price.,=VeryGood=
Great stuff!,=Excellent=
See Update,=Good=
LOVE  IT,=Excellent=
Love it,=VeryGood=
I had to take it off after an hour.,=Unsatisfactory=
very talc-y,=Unsatisfactory=
ok,=Good=
Color choice not at it appears.,=Good=
product delivers,=VeryGood=
Good deal,=VeryGood=
Not Sure,=Good=
"old fashioned, not necessarily for old ladies",=Good=
Not For Me,=Poor=
For my mother in law,=VeryGood=
Glucosamine fights sun damage - Ineffective against hereditary dark circles,=Unsatisfactory=
"Works well, if you can get the dual pump to work",=Good=
A good product - in theory,=Good=
Godsend for Natural Hair -- Price too High on Amazon,=VeryGood=
This is the Only Cream to Ever Make Me Happy,=Excellent=
Can't go wrong with main and tail,=VeryGood=
Useless,=Poor=
Good color lip balm,=VeryGood=
Love Sally Hansen products!,=VeryGood=
aahhhhh,=Excellent=
so small,=Unsatisfactory=
"VERY stinky, and VERY orange.",=Good=
very strong scent,=Unsatisfactory=
Very short range!,=Unsatisfactory=
Waste of time and money,=Poor=
No Big Deal,=Unsatisfactory=
cologne not stored properly?,=Poor=
Go back to the drawing board,=Poor=
Not a fan,=Unsatisfactory=
Works well but. .,=VeryGood=
did nothing for us,=Poor=
Meh,=Good=
Flakes and burns,=Poor=
Color good,=Poor=
Good if you know how to put them on,=Unsatisfactory=
Mineral Oil,=Poor=
clogs pores,=Poor=
has helped some,=VeryGood=
Doesn't do anything,=Poor=
Olay Regenerating Serum,=Excellent=
My mom stole mine,=Excellent=
Small and doesn't stay warm,=Unsatisfactory=
Not as good as expected!,=Good=
Detangles,=Good=
"Broken pieces, took forever to ship",=Poor=
New Formula Doesn't Work :(,=Unsatisfactory=
"EVAPORATES WHEN YOU \BLINC\""""",=Unsatisfactory=
"Wow, amazing color!",=Excellent=
Too small for most blush brushes,=Unsatisfactory=
ehh not so great,=Unsatisfactory=
Works,=Excellent=
"It Feels Really Nice, But Too Expensive!",=VeryGood=
Fab!!!!,=Excellent=
Elta MD is a top product for sunscreens,=Good=
Pretty,=Unsatisfactory=
Oily Scalp? Look elsewhere.,=Poor=
Great for removing nail polish mistakes,=Excellent=
"Nice color, no staying power",=Unsatisfactory=
Works Well and Good Value,=VeryGood=
Lasts too long,=Good=
Egyptian Plum,=Excellent=
Wanted to like it more,=Good=
too sticky and smelly,=Unsatisfactory=
"An effective, but not so gentle exfoliant",=Good=
Wonderful Cologne,=Excellent=
An excellent conditioner at a great price,=Excellent=
Dove Cream Oil Alright for the Price,=Good=
It breaks me out,=Good=
Maybe it's the formula?,=Unsatisfactory=
Just right for me,=Excellent=
Good for at home facial,=VeryGood=
Looks orange on fair skin,=Poor=
Dermatologist Recommended,=VeryGood=
dont like,=Unsatisfactory=
Pretty Good,=Excellent=
"Did not do anything to help make up last, made make up cakey",=Poor=
90%cotton 10%lycra just the right texture!,=Excellent=
Too Watery,=Unsatisfactory=
Really........dumbest thing I ever purchased.....,=Unsatisfactory=
Cheaper elsewhere,=Good=
Feel like a salad!,=VeryGood=
Suprising!,=VeryGood=
Not for long hair,=Poor=
lukewarm,=Poor=
"Didn't help with wrinkles, but helped with dark spots",=Good=
Not for me,=Unsatisfactory=
like it.,=VeryGood=
rough and dry,=Poor=
Not For Me,=Unsatisfactory=
Not so good.,=Unsatisfactory=
French Affair,=Excellent=
no,=Unsatisfactory=
Made my acne worse,=Poor=
heavy greasy,=Poor=
L'oreal Visible Life line minimizing and Tone Enhancer,=Excellent=
Very good product,=VeryGood=
Best soap,=Excellent=
its ok,=Good=
Didn't do much.,=Unsatisfactory=
So far...,=VeryGood=
Useful,=VeryGood=
Great product!,=Excellent=
"Skin Soft, No Blackhead Removal",=Unsatisfactory=
Rich when added to foundation as a tinted moisturizer.,=VeryGood=
Nice product texture,=VeryGood=
Very Oily,=Poor=
"Very sheer, three or more coats needed",=VeryGood=
Nivea My Silhouette,=Good=
Fair Skin People Be Careful,=Good=
Cheaply Made. OK if you don't mind Superglue-ing the Metal Tips On,=Unsatisfactory=
No,=Unsatisfactory=
Pick another product.,=Unsatisfactory=
Great for some,=Good=
a slight tan,=Good=
Staple lotion,=Excellent=
"no Lightening, no Brightening,......NOTHING",=Unsatisfactory=
Bought this on a whim,=Good=
Great Stuff!!,=Excellent=
Lighter (powder-y) African musk.....,=Excellent=
Excellent results,=VeryGood=
Not what I expected....,=Unsatisfactory=
The Holy Grail of Gels,=Excellent=
Dangerous ...,=Poor=
Follow directions,=Excellent=
Nice lipstick! :),=VeryGood=
no bubbles,=Unsatisfactory=
Paula's Choice is right,=Unsatisfactory=
Eh... not pleased... skin softer but thats it,=Unsatisfactory=
compact drying option,=Excellent=
Good product but needs some changes,=VeryGood=
"Beware, the tube has shrunk",=Good=
Just ok,=Good=
Fail,=Unsatisfactory=
i love this perfume,=Excellent=
Great scent.,=VeryGood=
Nice body wash,=VeryGood=
Not What I Had in Mind,=Unsatisfactory=
Great moisturizer!,=Excellent=
Satisfied Customer,=Excellent=
Nice Scrub,=Excellent=
love this company!,=VeryGood=
Not worth it,=Unsatisfactory=
Not very absorbent,=Unsatisfactory=
Pleased Customer,=Excellent=
Nice Curls,=VeryGood=
LESS TOXIC BUT HAIR NOT SO CLEAN,=Unsatisfactory=
No Added Value Over Using Advanced Night Repair Alone.,=Good=
stuff will breakouts so go easy,=VeryGood=
Too dark for blondes,=Unsatisfactory=
break out,=Unsatisfactory=
Don't bother....,=Poor=
Good quality,=VeryGood=
"CARUSO PROFESSIONAL MOLECULAR STEAM ROLLERS WITH SHIELDS, MEDIUM",=Excellent=
Bit Stiff,=Good=
Mistake to purchase from this vendor...,=Poor=
"Thick coverage, buildable, but clumpy",=Good=
wasnt crazy about this,=Poor=
Thought I'd try just to see if it works.,=Excellent=
It's just ok,=Good=
hate it made my skin burn and left spots.,=Poor=
The foulest of the foul,=Excellent=
Works fine,=VeryGood=
May Deep Clean but NO Odor Preventative Ingredients,=Unsatisfactory=
I started with this product,=Good=
Takes too many coats,=Unsatisfactory=
Excellent wear.  The color does not come out like it looks in bottle.,=Good=
Get what you pay for,=Good=
Waste of money since product does not work for me,=Unsatisfactory=
Poor quality,=Unsatisfactory=
Decent facewash,=Good=
"This is a powder, not a spray",=Good=
Great product,=VeryGood=
Yummy!,=Excellent=
Not what I expected,=Good=
Short-lived...,=Unsatisfactory=
Motions' Inconsistent Story...,=Good=
not this smell...,=Unsatisfactory=
"If I had to choose only one product to take care of my face for the rest of my life, it would be this serum.",=Excellent=
Waste of Money,=Unsatisfactory=
This stuff is great!,=Excellent=
No redeeming qualities to this disappointing product,=Poor=
Too small,=Unsatisfactory=
Blackhead remover,=Unsatisfactory=
"Cute packaging, for a piece of crap that doesn't work",=Poor=
"Great for extensions in baby fine, thin hair!",=Excellent=
wonderful product,=Excellent=
Flat iron spray,=VeryGood=
Sorry it's not subscribe and save anymore,=VeryGood=
Not For Me,=Unsatisfactory=
Beautiful color!!,=Excellent=
Not Impressed,=Poor=
Took a while to get the hang of this one...,=Good=
Disappointed,=Poor=
all broken,=Poor=
Would only be better if it were a cream.,=VeryGood=
Okay,=VeryGood=
Good product.,=VeryGood=
Not Bad,=Good=
I didn't like them,=Unsatisfactory=
The best,=Excellent=
Cannot recommend,=Poor=
Would be 5 stars except for the price,=VeryGood=
"Scent is amazing, but it doesn't last",=Good=
Lighten my hair,=VeryGood=
Not what I expected,=Unsatisfactory=
AMAZING!!!,=Excellent=
Too soft,=Good=
okay,=Unsatisfactory=
You get what you pay for!,=Excellent=
not worth buying,=Unsatisfactory=
"aveeno positively radiant tinted moisturizer, spf 30 medium,2.5 ounceI",=VeryGood=
Not a good Quality lamp,=Poor=
Almost too soft!,=Unsatisfactory=
THE BEST DOESN'T HAVE TO BE THE MOST EXPENSIVE,=Excellent=
Say NO to Carrots: Allergic reaction and poor customer service,=Poor=
Not the color or texture I expected.,=Good=
Color not good,=Unsatisfactory=
Great Hand Lotion,=Excellent=
Too cheap too be true,=Poor=
AWESOME!!!,=Excellent=
Doesn't work,=Poor=
Not great,=Unsatisfactory=
Really clean,=Excellent=
not good it peels off,=Poor=
No difference!,=Unsatisfactory=
Desert Essence Thoroughly Clean Face Wash,=Excellent=
Smells gross and does nothing.,=Poor=
I never thought I would use a brush to exfoliate my face - but this is PERFECT!,=Excellent=
The Blonde is Too Dark and Too Gold!,=Unsatisfactory=
Nothing will give skin as good as this!,=Excellent=
"It makes makeup go on smoothly, but at the cost of feeling greasy",=Unsatisfactory=
Mistral changed the Wild Blackberry scent!,=Unsatisfactory=
derma e Refining Vitamin A Crème,=Excellent=
O.K.,=Good=
Triumph of marketing over science!,=Good=
Seems to work.,=VeryGood=
Didn't Work for Me,=Poor=
DOESN'T GET YOUR HAIR CLEAN!,=Poor=
Not as great as I expected after reading other reviews....,=Unsatisfactory=
Good if it matches your skin,=Unsatisfactory=
My 'go-to' for flawless skin.,=VeryGood=
Not a good investment.,=Poor=
These nails are not natural,=Poor=
Ok,=Unsatisfactory=
You get what you pay for.  Not for lefties.,=Good=
ok,=Poor=
Broke Me Out More After A Few Weeks Of Use,=Poor=
A lovely product,=Excellent=
Necessary tool for the job...,=VeryGood=
very nice smell,=Excellent=
Love the facial cleanser,=Excellent=
An average drug store cream,=Good=
"Very strong smell, unsure if it works",=Unsatisfactory=
Great! But a bit long for me,=VeryGood=
BS,=Poor=
Too bulky for me,=Poor=
"Great for nightly use, but...",=Good=
Nothing special?,=Good=
Sally Hansen Polish Remover 8 oz. Strengthening,=Good=
Great Moisturizing Oil,=VeryGood=
meh.,=Poor=
Not such a great thing for me,=Good=
"Love the product, hate the packaging",=Unsatisfactory=
Simple Light Moisturizer,=Unsatisfactory=
meh,=Unsatisfactory=
Great brush,=Good=
Nice change from bar soap; handy in the locker room,=VeryGood=
I love this top coat!,=Excellent=
"E gads, another gadget!",=Unsatisfactory=
didn't work,=Poor=
Overnight treatment.,=Unsatisfactory=
Not seeing any changes,=Poor=
Works great for my sensitive skin.,=VeryGood=
not much better than lotion....,=Unsatisfactory=
Not a great choice for sensitive skin or older skin,=Good=
"Do not buy, the mask is full of alcohol!!!!!!!",=Poor=
Nice!,=Excellent=
"IT STINKS LIKE SULFUR 8 PRODUCTS, PLUS THE NAME ON BOX & TUBE IS V-I-R-G-O!",=Unsatisfactory=
Honeysuckle Rose has always been my staple deep conditioner!,=Excellent=
Don't be fooled by silicones; Excellent Primer replacement,=Good=
WORKS GREAT (SOMETIMES),=VeryGood=
Wouldn't buy again,=Unsatisfactory=
Man oh Woman,=Excellent=
"Smells like lavender, works well.",=VeryGood=
Found to be Drying & Thick,=Unsatisfactory=
***NOTHING TO RAVE ABOUT******,=Good=
Great lotion,=Excellent=
Its ok,=Good=
L'Oreal facial nightcream,=VeryGood=
meh,=Poor=
Doesn't do anything && bad packaging. :(,=Poor=
Product not for me,=Poor=
"Ok, but not great",=Good=
"Can't \see\"" any improvement.""",=Good=
Not for sensitive skin,=Unsatisfactory=
Good technology. Dicey device.,=Good=
STILL WAITING,=Poor=
Not Great but Not Bad either....,=Good=
what!? no brush!?,=VeryGood=
Not a Fan,=Poor=
Pretty Nails Instalnt Polish Remover Regular,=Excellent=


================================================
FILE: data/MP2_2022_train.csv
================================================
text,label
good variety of colors,=Good=
Almost Runny and the Scent is So-So,=VeryGood=
too artificial for me,=Poor=
Fixed my peroxide damaged hair.,=Excellent=
"Overpriced Dryer, No Differance In Hair",=Poor=
Food + Musk does not equal good,=Unsatisfactory=
This product did not work for me.,=Unsatisfactory=
Good stuff!,=VeryGood=
good product,=VeryGood=
SHAR,=VeryGood=
soft and silky,=VeryGood=
Alright,=Good=
Obagi,=Good=
works great to moisturize,=Good=
Try any other Anew eye cream....,=Poor=
Decent Styling Cream...Didn't Like the Smell,=Good=
I Remain Unimpressed,=Poor=
"Not great, especially considering how much it cost!!",=Poor=
Liz Claiborne Curve Soul Perfume,=Good=
Not what I expected but I do like it.,=VeryGood=
Poor to average quality,=Unsatisfactory=
Feels like it's a never-ending pot,=Excellent=
It works okay,=Good=
not great,=Unsatisfactory=
So far so good,=VeryGood=
not smooth coverage,=Good=
A Mixed Review,=VeryGood=
Great smell but leaves hair weighty,=Good=
Odd product,=Good=
Wonderful!,=Excellent=
It did not work,=Poor=
broke me out,=Poor=
Get it in liquid form,=VeryGood=
Disappointed in this product,=Unsatisfactory=
Not so great nail buffer,=Unsatisfactory=
Regular,=Unsatisfactory=
Great for Long or Thick Hair,=Excellent=
Just a minor complaint,=VeryGood=
appears to work well,=Excellent=
Great oil,=Excellent=
Makes you a Greasy Orange.,=Poor=
DOES NOT WORK...,=Unsatisfactory=
I'm disappointed.,=Unsatisfactory=
I love it,=Excellent=
american crew fiber 1.75oz jar,=Excellent=
It Took A Few Attempts to Get On the Right Track...,=VeryGood=
What?,=Unsatisfactory=
Dries quickly but did chip the next day,=VeryGood=
It is my perfum for 21 years....,=Excellent=
It does its job,=VeryGood=
Not high quality,=Unsatisfactory=
"Doesn't do anything , Aluminum oxide crystals works better, Cheaper.",=Poor=
So-so,=Unsatisfactory=
works better than the loop,=VeryGood=
Finally a solution for the inept. (secret neck trick too),=Excellent=
Still my fave,=Good=
st ives cleanser,=Poor=
Smooths my frizzy hair,=VeryGood=
Ouch!,=Poor=
Nothing like designer skin,=Good=
Pink base,=Unsatisfactory=
"Like others, this did NOTHING for shine control.",=Poor=
Very gentle shampoo,=Excellent=
Excellent eye make up remover!,=Excellent=
In love :),=Excellent=
NOT FOR THICK AFRICAN HAIR,=Poor=
Great for skin care!,=Excellent=
"Prevents Pimples, Does Not Clear Skin",=Unsatisfactory=
Quality?,=Good=
Princess Pink $518 (Sheer French Manicure),=Good=
It's Okay,=Good=
Not so Good for My skin.....,=Poor=
I am a Fat night RN,=Excellent=
Don't like the smell.,=Good=
Smells so good and works great!,=Excellent=
I much prefer the 30 volume kit...,=Good=
blech,=Unsatisfactory=
Don't have time to heat it up all the time,=Good=
Too much fragrance!,=Poor=
Don't buy,=Poor=
Not for me,=Unsatisfactory=
Really handy,=Excellent=
Excellent Setting Powder,=Excellent=
non greasy.,=VeryGood=
not impressed,=Poor=
Really Not Impressed,=Poor=
clairol shimmer shampoo,=Poor=
Cheap and rough..,=Poor=
Less grit,=VeryGood=
great product very gentle,=VeryGood=
Great,=Excellent=
great for my beard,=VeryGood=
writing titles is the hardest part of a review,=Excellent=
pretty ok,=VeryGood=
yes to volumizing,=Poor=
Nice color but does not work that great.,=Good=
Not such a great mascara.,=Good=
THIS PRODUCT SUCKS !,=Poor=
No Other Cotton Pad Will Do!,=Excellent=
Sticky,=Good=
nice,=VeryGood=
"Too Bad, Had Great Potential.",=Unsatisfactory=
Conditioner: Good idea in theory - bad idea in practice,=Good=
They Changed the nozzle!,=Poor=
"Good for all skin types, even sensitive skin",=VeryGood=
so far it works as well as water = no results,=Unsatisfactory=
Ran out in one go,=Unsatisfactory=
Nothing Special,=Unsatisfactory=
Not much change to see with Vitamin C,=Good=
Not as good as i hoped...but it gets better.,=VeryGood=
"It's Just A Moisturizer, So Don't Expect Miracles",=Good=
I believe I got a fake product,=Poor=
Works as needed.,=VeryGood=
Not worth the hype,=Unsatisfactory=
A Big Mistake,=Poor=
Tiny little tape,=Poor=
"I had THREE bottles of this, and sorry, folks ---any \minimizing\"" comes from the silicone, a purely aesthetic trick""",=Poor=
simple,=Good=
Not really for short or simple hair,=Good=
Cloudy/foggy; PLEASE NOTE FORMULATION CHANGE IN THIS PRODUCT,=Poor=
eyeshadow,=Unsatisfactory=
I really wanted to like this product...,=Poor=
Not worth the $,=Poor=
Care for Hair,=VeryGood=
Ewww...not a nice smell,=Poor=
CANT WEAR MORE THEN 1 TIME,=Poor=
nO GOOD,=Poor=
not bad,=Good=
Will not buy again,=Poor=
The Scent,=Unsatisfactory=
Not my color.,=Poor=
Works great,=VeryGood=
"Okay, heavily perfumed",=Poor=
Just okay,=Good=
DISAPPOINTED THAT I CAN'T USE THIS PRODUCT,=Unsatisfactory=
"Good idea, but not for grays at temple",=Unsatisfactory=
Queen Bee Dethroned!,=Poor=
Love this soap,=VeryGood=
Love,=Excellent=
this product gets the job done,=Good=
Mary Kay,=Good=
Cabots Musk Oil,=Good=
OK,=Good=
"Smells nice, but...",=Good=
Works well,=VeryGood=
"dry and scratchy, i may have to heat it ...",=Poor=
don't clean well,=Good=
It's okay,=Good=
A bit disappointed,=Good=
Not really a concealer,=Unsatisfactory=
Havent used yet,=Good=
Its ok,=Good=
Repeat buyer. Great hand soap. Refill the dispenser with the larger size. Extremely gentle on your skin.,=Excellent=
LIKED THE COLOR,=VeryGood=
these are those tiny clips that are about 3 cm long. picture is deceiving.,=Unsatisfactory=
its okay....,=Good=
Olay Regenerist eye lifting serum,=VeryGood=
Ambi Fade Cream,=Good=
this is why I love Amazon real people,=Unsatisfactory=
not happy,=Poor=
Actually works,=Excellent=
Netrogena Pore Refining Toner,=Excellent=
It definitely works,=Good=
Break out,=Poor=
Not too bad,=Unsatisfactory=
NIce,=VeryGood=
not a good product at all,=Poor=
I feel clean afterwards ...,=VeryGood=
Misleading --Not really Kukui oil,=Unsatisfactory=
Cheap but...,=Poor=
Nice scent,=Excellent=
Don't bother,=Unsatisfactory=
My hair is pleased,=VeryGood=
Wasn't happy with it,=Unsatisfactory=
I didn't like it.,=Unsatisfactory=
Not for my skin,=Unsatisfactory=
Doesn't moisturize my skin very much.,=Unsatisfactory=
Meh.,=Unsatisfactory=
Great lotion,=Good=
so far so good,=VeryGood=
Wanna love it,=Good=
Not quite as versatile as Fels Naptha,=VeryGood=
"Decent Moisturizer, but Irritates my Face and Eyes",=Unsatisfactory=
Cheat Mother Nature,=Excellent=
It works,=VeryGood=
kinda crappy,=Unsatisfactory=
ok,=Good=
Matte Finish and Fine Line Fill,=VeryGood=
I really wanted to like this product,=Poor=
Seasonal wear,=VeryGood=
Smears when used with a brush,=Good=
made for LEGS not FACE!,=Poor=
?? Not sure about this stuff yet,=Unsatisfactory=
not worth the trouble,=Poor=
HARD TO CHANGE BATTERIES,=Poor=
Careful,=Good=
"Not my favourite, but still Burt's Bees Quality",=VeryGood=
Doesn't live up to the hype,=Unsatisfactory=
Pregnant belly must-have.,=Excellent=
Tangles Hair,=Good=
It's ok,=Good=
"Love Essie, Confused About the Color",=VeryGood=
I have just experienced a hair disaster.,=Poor=
Perfect if you have an oily scalp. been using it for years!,=Excellent=
Nice cleanser!,=Excellent=
I've used this serum for years - it works,=Excellent=
"Nice base coat, but not strengthening.",=VeryGood=
It's an OK cleansing oil.,=Good=
Works great!!!,=Excellent=
Saw Some Improvement with Regular Use; Also Added Sheen to Bare Nails,=Good=
My Hair Loves It,=VeryGood=
Feels Chaulky,=Unsatisfactory=
Burns!,=Poor=
The best ONE!,=Excellent=
Not sure,=Unsatisfactory=
awesome dryer,=Excellent=
great dryer,=VeryGood=
brighter skin,=VeryGood=
Decent Hardener,=VeryGood=
Another waste of money and the fact is that I have ...,=Poor=
Unimpressed  UPDATE: TERRIBLE!,=Poor=
Automatically signed me into an account with proactiv company!,=Poor=
Why Doesn't This Work?,=Poor=
Buy a Sharpie,=Poor=
Nice but not long lasting,=VeryGood=
Not near as good as the regular gloss,=Good=
NOT Travel-sized,=VeryGood=
Not what i thought,=Poor=
Too small and I don't like the material,=Good=
Smells yummy,=Good=
Castor Oil,=Excellent=
tested on poor animals,=Poor=
Lots of strong bristles,=Excellent=
Awsome prodcut,=Excellent=
Too hot!!,=Good=
Not good,=Unsatisfactory=
"Great dryer, don't care for the conditioner",=Good=
"It works, but you have to give it time",=Good=
Good for the price,=VeryGood=
Awesome Shea Butter,=Excellent=
Not a big help for natural African American hair.,=Good=
Works great with the herbal hair products,=VeryGood=
Too Natural,=Unsatisfactory=
An exceptionally nice hairbrush!,=Excellent=
give it a try..better than I expected,=Excellent=
Good but Not Great,=Good=
great,=Excellent=
Useless,=Good=
Not worth the money and not so great,=Unsatisfactory=
Neem face mask,=Unsatisfactory=
Good Conditioner,=Good=
eh,=Good=
Affordable eyebrow tinting,=VeryGood=
"It made me say  \WOW.\""""",=Excellent=
Aromatherapy,=Excellent=
Look closer at the 5 star reviews,=Poor=
Better Than Expected,=Excellent=
it's a ok hair product,=Good=
Toxic?!,=Unsatisfactory=
LOVE this curling iron!,=Excellent=
Eye Lash Accelerator,=Unsatisfactory=
Eyeshadow makeup kit,=Poor=
"Worked great, but couldn't handle the scent",=Unsatisfactory=
ok,=Good=
Tried and tested,=Excellent=
This is the first eye cream,=VeryGood=
Margarite Zince Cream!!!! Smells GOOD now!!!,=Excellent=
Pretty smell,=Unsatisfactory=
Misleading Description,=Unsatisfactory=
Don't bother.  Just another junky item.,=Poor=
Will not repurchase,=Good=
Overpriced and Underproductive,=Poor=
Two Stars,=Unsatisfactory=
Very expensive product with no results......,=Poor=
One star is still too much,=Poor=
Brush,=Good=
Drying to my hair,=Unsatisfactory=
Overheats,=Good=
Got Dark Spots after 2 uses,=Poor=
This is not as bright,=Unsatisfactory=
only worked for about 4 months !,=Poor=
Oy Vay!,=Good=
Great at eliminating wrinkles,=VeryGood=
Finally No Hot Metal!,=Excellent=
My new holy grail.,=Excellent=
Well,=VeryGood=
"Effective, But Scent (Although Pleasant) Is A Bit Too Pronounced For My Personal Taste",=Good=
Pretty thin polish,=Unsatisfactory=
Very thick product with challenging smell,=Good=
Great product. Bottle Pump could be better.,=VeryGood=
"Want flat, crunch curls?",=Poor=
smells good,=Excellent=
Alright,=Good=
A satisfying product,=VeryGood=
Not worth the price,=Unsatisfactory=
*** CONTAINS PARABENS ***,=Unsatisfactory=
Read this before buying!,=VeryGood=
Not good for oily complexions.,=Poor=
Prefer over regular eyelash curlers,=VeryGood=
not so happy.,=Poor=
Not a handy device at all!,=Poor=
"If you love OPI brand and love pink colors, this is for you.",=Excellent=
Re-consider using this if you have ethnic hair...,=Poor=
Waste of money,=Poor=
i thought it was a blush but its just sparkles,=Unsatisfactory=
did make a difference,=Excellent=
Soothing,=VeryGood=
Good product,=Excellent=
Does not do much that I can tell,=Poor=
redness relief lotion,=VeryGood=
Ordering it again,=VeryGood=
pass this up if your hair can't tolerate cones.,=Poor=
Makes hair SOFT - but doesn't really control the frizz,=Good=
Definitely a GODSEND.,=Excellent=
Time will tell if hormone balancing is just a claim or a reality - UPDATED 10/8/13,=VeryGood=
Works good for me,=Excellent=
Wife did not care for this,=Unsatisfactory=
Not Coral,=VeryGood=
LOVE IT!,=Excellent=
Works well,=VeryGood=
Real deal stuff,=Excellent=
disappointed,=Unsatisfactory=
UGLY COLOR..not what expected!!,=Unsatisfactory=
"Real thing,",=Excellent=
Great for dry skin!!!,=Excellent=
not effective,=Unsatisfactory=
Too small,=Unsatisfactory=
Great affordable flat iron,=VeryGood=
Not Nearly Hot Enough,=Poor=
Watery light scent,=Good=
clumpy,=Unsatisfactory=
I like to wear this alone,=Good=
Didn't like because it may be toxic!,=Poor=
Itchy scalp,=Unsatisfactory=
Disappointed,=Unsatisfactory=
very thick...,=Good=
Great for fine lines and overall skin appearance,=Excellent=
Not Impressed,=Unsatisfactory=
dont bother,=Poor=
Been Using it For 25 years,=Excellent=
Not worth it,=Poor=
Meh,=Unsatisfactory=
Too Frustrated!,=Poor=
Nice color,=Good=
My Go To Serum,=VeryGood=
okay,=Good=
Great conditioner,=VeryGood=
works,=VeryGood=
Just OK,=Good=
"Some moisturizing effect, nothing more...",=Unsatisfactory=
Basically OK,=Good=
Blech!,=Poor=
Does wonders,=Excellent=
Feria Deep Bronze Brown,=VeryGood=
Great For African American Skin Tones,=Excellent=
run of the mill shampoo,=Unsatisfactory=
A polarizing scent. I'm on the negative pole.,=Poor=
It's okay,=VeryGood=
ineffective,=Unsatisfactory=
Love the color!!,=VeryGood=
Average Vaseline Lotion with Fancy Descriptions,=Unsatisfactory=
Introduction to glycolic acid,=VeryGood=
Great,=Excellent=
Love the ingredients ...,=Good=
Great to use all over!,=Excellent=
DONT LIKE IT,=Poor=
Don't bother,=Poor=
great but didn't last long,=VeryGood=
Great headbands,=Excellent=
Okay spray.,=Good=
Good For Sensitive Skin But Has a Mild Frangrance,=VeryGood=
"Feria, the only box I trust.",=Excellent=
NO RINSE PRODUCTS,=Excellent=
One Star,=Poor=
In the middle,=Good=
works great!,=VeryGood=
Isn't moisturizing enough,=Good=
Dissapointed,=Poor=
This is just not a good product,=Unsatisfactory=
Goregous,=VeryGood=
Rapid Repair by Neutrogena,=Unsatisfactory=
best kept secret ever,=Excellent=
Better Firming Lotions Out There,=Good=
Natrual? With petrochemicals and MSG. And it made my hair nasty.,=Unsatisfactory=
No too impressed...,=Unsatisfactory=
"Lovely scent, gentle, and no rough detergent feel",=VeryGood=
Never again will I buy this product!,=Poor=
"Leaves hands soft, but strongly scented",=Good=
My Favorite!,=Excellent=
buy me!!,=Excellent=
NOT THE BEST,=Poor=
Don't like it,=Poor=
perfect color,=VeryGood=
"Works as Promised, But.....",=Good=
"If it burns, stop use IMMEDIATELY",=Poor=
SOFT BUT A LITTLE GREASY,=Good=
Best Eyebrow powder I have found so far.,=VeryGood=
"itw as balacka nd I was disappointed, I noyice now they have changed the photo ...",=Unsatisfactory=
good product,=VeryGood=
Not my favourite.,=Unsatisfactory=
awfull,=Poor=
"This is a winner, great product for natural texture hair",=Excellent=
So far I like it,=VeryGood=
I don't like the scent of this,=Unsatisfactory=
Not the real thing.,=Poor=
Hurts to peel off!!,=Poor=
Well it cleansed my hair...,=Poor=
Great cleanser,=Excellent=
good color but not as long lasting,=VeryGood=
Threw it out,=Poor=
Smells aweful,=Poor=
"Scent is nice, but not impressed",=Good=
Mixed Feelings,=Good=
Great Clean Feeling,=VeryGood=
Amlactin,=Unsatisfactory=
not like my old ones but still ok,=Good=
Hardens but has consequences.,=Good=
Felt great!,=Excellent=
Lash Growth,=VeryGood=
"Great item, but sellers need better descriptions.",=VeryGood=
Love it,=Excellent=
Affordable. But A Note of Caution ...,=Poor=
Smells like poop but it does the job,=VeryGood=
Be Delicious,=Good=
there is better out there............,=Unsatisfactory=
Clinique Quickliner in Moss is what I like for under my eyes,=VeryGood=
not what i was looking for,=Good=
Oil of Happiness,=Excellent=
looks different in person,=Good=
Terribly dull!,=Poor=
Great,=VeryGood=
Didn't do much for me and I broke out like crazy.,=Unsatisfactory=
"Refreshing and spicy, but not my favorite",=Good=
Just okay,=Good=
Dried up fast,=Good=
Well,=Good=
For Professional Only,=Poor=
Could be Better,=Good=
It pulls my hair out,=Poor=
"Eh, so-so",=Good=
1st its look nice until you used it.,=Poor=
"works great, smell great, may be drying for some people",=VeryGood=
OKAY BUT NOT ENOUGH,=Good=
Fragrance free means no ADDED fragrance,=Good=
Aveeno Clear Complexion BB Cream,=VeryGood=
A waste of money,=Poor=
Essie st. Lucia lilac,=Excellent=
Very moisturizing,=VeryGood=
Ok lip balm.,=VeryGood=
Best Brushes on the Market,=Excellent=
oh geez,=Unsatisfactory=
Buy Philip B Anti Flake Shampoo instead,=Good=
It's Good but I prefer my Queen Helen Mint Julep Mask,=VeryGood=
Three Stars,=Good=
No streaking and soft skin,=Good=
It was not as expected,=Unsatisfactory=
I like it,=VeryGood=
Well worth the money. A great buy!,=Excellent=
Eh....not sure how I feel about this one,=Good=
Very Moisturising,=VeryGood=
Great product for those who are sensitive skin and winter itch...,=VeryGood=
Its Ok I wouldn't rave about it.,=Good=
Okay,=Good=
Works! But no miracle.,=Excellent=
Nice fragrance; soft hair,=VeryGood=
This does not work,=Unsatisfactory=
Added subtle highlights on black Asian hair,=VeryGood=
Not as dark as other products I've used,=Good=
Cute!,=VeryGood=
Ok but don't see what they claim,=Poor=
Works great but....,=Unsatisfactory=
Works Great!,=Excellent=
"Didn't help son's eczema, but I love it",=VeryGood=
"Too small, too flimsy, not worth the price",=Poor=
I like these rollers,=VeryGood=
Buyer Beware!!!,=Poor=
Doesn't really give me volume,=Unsatisfactory=
Great!,=VeryGood=
Not worth the money,=Poor=
Could Be Better,=Unsatisfactory=
No opaque like the picture.,=Good=
Great Product,=Excellent=
BRUSHES ARE FAKE,=Poor=
Best cleanser I have used,=VeryGood=
so so product,=Good=
POS,=Poor=
very sharp,=VeryGood=
Susan,=Unsatisfactory=
Perfume spills inside the box!!!!,=Good=
Not what is advertised,=Unsatisfactory=
Fried the ends of my hair :(,=Unsatisfactory=
Great for dried-out hair,=VeryGood=
is this infused with itching powder?,=Poor=
"Help yourself, don't buy this",=Poor=
BUYER BEWARE - BAD ALCHOHOL IN PRODUCT for SENSITIVE SKIN,=Poor=
Softer Hair,=Excellent=
Average Result,=Good=
good,=Good=
Made hyperpigmentation worst,=Poor=
great,=Excellent=
Very nice for the price,=Excellent=
Blinc Heated Lash Curler,=Unsatisfactory=
I'm 80% happy,=VeryGood=
Not sure about this one?????,=Good=
Wonderful Product,=Excellent=
disgusting of all,=Poor=
Fake!,=Poor=
Carnival,=VeryGood=
way too harsh,=Unsatisfactory=
Not a big fan,=Unsatisfactory=
Great,=VeryGood=
good product BUT LEAKING!,=Poor=
This is great for sensitive skin.,=Excellent=
Crap crap crap,=Poor=
wonderful,=Excellent=
Pretty Silvery Shade!,=Excellent=
Tightens but still dark circles,=Unsatisfactory=
What a total rook.  So not worth the rediculous cost of this product.,=Poor=
"Good cleanser, horrible smell",=Good=
Still awaiting results,=Poor=
Dries out VERY fast. Never really sets,=Unsatisfactory=
"Wow , and awesome",=Excellent=
"dry, old and clumpy",=Poor=
"Far too light, but glitter spreads evenly",=Unsatisfactory=
Causes more hair loss,=Unsatisfactory=
Great for allergies!,=Excellent=
I dont like it...,=Unsatisfactory=
Don't buy on amazon!,=VeryGood=
"Doesn't strip color, but otherwise unremarkable",=Good=
Good but not for thick hair,=VeryGood=
Just OK,=Good=
Didn't work.,=Unsatisfactory=
Not as bright as shown,=Good=
Not nearly as strong as I hoped.,=Unsatisfactory=
WOW!,=Excellent=
like this product so much!,=VeryGood=
Leaves hair silky!,=Excellent=
It's a keeper,=VeryGood=
Perfect,=Excellent=
"Nice and easy fitting system, though a bit uncomfortable",=VeryGood=
Shampoo & Body Cleanser  Aqua Glycolic,=VeryGood=
Not good!,=Poor=
No big deal,=Poor=
IT WORKS,=Excellent=
Smells Great!,=Poor=
decent for the price,=Good=
product is defective,=Poor=
great for soft curls,=VeryGood=
Pretty color but nothing like the picture,=Unsatisfactory=
Leaves Me Bright Eyed,=VeryGood=
not sure it works,=Unsatisfactory=
nice,=VeryGood=
Pretty darn good!,=VeryGood=
Nasty smelling shampoo!,=Poor=
shea moisture coconut&hibiscus curl*style didn't work for me,=Unsatisfactory=
Horrid Smell,=Unsatisfactory=
Good stuff,=Excellent=
"Used for a week, hello acne!",=Unsatisfactory=
Just so so,=Unsatisfactory=
Dont Do IT,=Poor=
"Padded reviews - bunch of \one-time/five-star\"" reviews""",=Poor=
Not bad! Will double as lip stain too,=VeryGood=
good for brow gel,=Good=
Zero Stars!!!!,=Poor=
Best hair brushing brush I've found,=Excellent=
Good product,=VeryGood=
nice. scents the house.,=VeryGood=
Too smelly,=Good=
"Where's the mascara, indeed!",=Poor=
Great on short hair,=Excellent=
Decent product,=VeryGood=
"Very nice,very moisturizing",=VeryGood=
Decent conditioner for short hair,=Good=
Curticle cutter was dull,=Good=
radiance eye cream,=Unsatisfactory=
It stings,=Good=
Fresh and wholesome,=Excellent=
ok i guess,=Good=
Don't think it works,=Poor=
Fine but not wonderful,=Good=
Poor customer service from this vendor.,=Poor=
Too heavy and green for my skin,=Good=
Nice product but does not stretch out,=Good=
Not what I was expecting.,=Poor=
2.5 % doesn't do it for me. Like the wash and lotion.,=Good=
Abysmal,=Poor=
good weekly protein treatment for fine/thin hair that needs more protein than thicker hair,=VeryGood=
Eh ok,=Unsatisfactory=
The Best,=Excellent=
Broken,=Unsatisfactory=
Shedding after 1 week,=Poor=
Not my color,=Poor=
"Nice, gentle cleanser, but a bit watery",=VeryGood=
Eyebrow kit,=Unsatisfactory=
Cheap but hard to work with,=Poor=
Best cleanser i used so far,=Excellent=
Just not worth the money,=Unsatisfactory=
Sticky & strong alcohol smell,=Poor=
Shears,=VeryGood=
I Am Not Very Impressed,=Unsatisfactory=
Too long!,=Unsatisfactory=
One of the best!,=Excellent=
"The Jury is Still Out, but So Far So Good",=VeryGood=
smells okay not so cleaning,=Unsatisfactory=
I like it,=VeryGood=
"Cindy Crawford pictures, say it all",=Poor=
"Inexpensive alternative with a long-lasting, light scent",=Excellent=
Very thick and not easily absorbed,=Unsatisfactory=
Horrible!!!!,=Poor=
"Worked good, not heavy, but bad attachments!!!",=Good=
thick har,=Good=
Made my skin a little dry,=Good=
It's ok,=Good=
Wasn't Nourishing at all  !!!!!,=Poor=
It's okay.,=Good=
Not the best probiotic powder,=Good=
Ingredients listed under Product Description are incorrect,=Poor=
Ok,=Good=
A little disappointed ....,=Good=
Love the smell of this soap,=VeryGood=
It's a NO go for me,=Poor=
Pureology,=Excellent=
Another Curve scent!!,=VeryGood=
Usually use the original formula but gave this a try,=Unsatisfactory=
Extremely Clumpy and Dries Out,=Unsatisfactory=
I enjoy a fun looking french manicure...,=VeryGood=
I don't get it,=Poor=
Doesn't work on my fine hair,=Good=
easy to use,=Good=
This is a Tangler,=Poor=
Love it,=Excellent=
Review,=Poor=
Lots of compliments,=Excellent=
Three and a half stars,=Good=
Good crayon,=VeryGood=
THE BEST!,=Excellent=
Strong perfume smell and too thick for me,=Unsatisfactory=
Shorter than I expected,=Good=
wasn't the same product,=Poor=
Great orange to keep in your collection,=VeryGood=
Reddish Tone,=Good=
like it,=VeryGood=
The only wash I've used for the last 2 years.,=Excellent=
Love it,=Excellent=
It is ok but not my fav.,=Good=
"Nice, quality sponge, no miracles of course",=VeryGood=
not what i was looking for but its a good flat iron,=VeryGood=
Not hot enough for 4A/B Natural hair.,=Unsatisfactory=
Best Shampoo,=Excellent=
Did not work!,=Poor=
Nearly as many uses as vinegar,=Excellent=
Its ok,=Unsatisfactory=
Not a Good Product,=Unsatisfactory=
UGH,=Unsatisfactory=
Good product with several drawbacks.,=Good=
Cheap Tool,=Unsatisfactory=
Best color for my hair!,=Excellent=
Great facial steamer but the steam arm needs more adjustments,=Good=
"It's not You, It's me.",=Poor=
Great for your skin!,=Excellent=
Essie Missed On This One,=Poor=
I really like this moisturizer.,=VeryGood=
It works,=VeryGood=
ok,=Good=
"Good oil, but not for my skin",=Good=
smells nice,=Good=
Cotton Candy Body Spray,=Good=
Ardell brow/lash growth product,=VeryGood=
Ok - but be careful with seasons,=Good=
Not impressed,=Unsatisfactory=
Clears all of the chlorine & gook from products out of your hair,=Excellent=
Gentle and effective.,=Excellent=
Pretty,=Excellent=
NIVEA BODY WASH,=Poor=
"I really wanted to love this, but BLONDES be forewarned: this WILL stain your hair and turn it PINK...and it is $$$!!!!",=Unsatisfactory=
night cream,=Excellent=
does NOT work :'(,=Unsatisfactory=
Beautiful Color... That doesn't last,=Good=
"I guess it's good, by other reviews",=Unsatisfactory=
Nylon Tipped Paddle Brush,=Excellent=
The search continues...,=Poor=
Not impressed,=Poor=
I don't like it,=Poor=
Best value for an all purpose crazy glue!,=Excellent=
Excellent Shampoooooo,=Excellent=
Like it,=Unsatisfactory=
GREAT FOR WOMEN OF COLOR ALSO,=VeryGood=
Like for scaly scalp,=Excellent=
BRING IT BACK AMAZON,=Excellent=
I use as concealer,=VeryGood=
Highly scented which could be a good or bad thing.,=VeryGood=
cakes,=Poor=
"Value, gentle, but actually cleans",=Excellent=
smells more like fly spray,=Poor=
Love it!,=Excellent=
Not great quality,=Poor=
Clincher comb,=Poor=
Does not adhere to foundation well,=Unsatisfactory=
2nd time,=VeryGood=
Not a big fan of the scent.,=Good=
Not as great as reviews implied,=Good=
LIfted my color with minimal damage,=VeryGood=
desert essence nourishing cleanser,=Poor=
Life Changing,=Excellent=
Color is very uneven,=Poor=
face,=Good=
"Really good, recommended even",=VeryGood=
"Light, Nice Color, Non-Greasy",=VeryGood=
Great toner,=Excellent=
MY FAVORITE,=Excellent=
Loved the sample.,=Good=
PROMISES PROMISES,=Unsatisfactory=
Works great!,=Excellent=
Use every day,=VeryGood=
Very good,=VeryGood=
Great Alternative to Mascara,=Excellent=
Avoid This - Contains Retinyl Palminate!,=Poor=
pt,=Poor=
No Results.,=Poor=
Fuse blew,=Poor=
way too greasy to use on my face or anyone's face,=Poor=
Excellent service. So so product.,=Good=
falling apart...,=Unsatisfactory=
It is not Universal,=Good=
Smells great and awesome price!,=VeryGood=
Nice but not frothy!,=Good=
Smells so good,=Excellent=
Nice oil,=Unsatisfactory=
Lovely Eyes,=VeryGood=
Great curling iron!,=Excellent=
Moisturizes well,=VeryGood=
"Powerful and effective, but not gentle",=VeryGood=
Three Stars,=Good=
It's okay,=Unsatisfactory=
Too much of good thing can be bad,=Unsatisfactory=
This Works Ok,=Good=
"The \miracle beauy product\""""",=VeryGood=
Weird stuff,=Unsatisfactory=
Nice product,=VeryGood=
Not crazy about it...,=Unsatisfactory=
Not like they used to be...,=Unsatisfactory=
Makes my hair soft and light,=VeryGood=
I dont't know if it works,=Good=
amazing stuff with an excellent shipping,=Excellent=
Does Not Work For Me,=Unsatisfactory=
Tossed,=Poor=
Ash blonde- but be careful!,=VeryGood=
The Brush,=Good=
Lindo color,=VeryGood=
Not worth the money.,=Poor=
not worth dissapointing,=Unsatisfactory=
"Eh, not my favorite",=Unsatisfactory=
Strikes a perfect balance of hydration and protection for me,=Excellent=
Microdelivery Peel Pads,=Excellent=
Do NOT buy - GRAY/WHITE color comes out of container -- not brunette,=Poor=
Beware it will turn your highlights red!!! (and your hands and shower floor),=Good=
Minimal Reduction,=VeryGood=
Not at All What I Expected,=Poor=
fixed my poor hair,=Excellent=
Decent microdermabrasion,=VeryGood=
Didn't notice any difference,=Poor=
"Not impressed, misled by such great reviews",=Good=
opi strawberry margarita,=VeryGood=
Turned my nails yellow,=Poor=
I've had better,=Good=
Just ok...,=Good=
Another Nice Color,=VeryGood=
Fixed by thumb-sucker in two applications,=Excellent=
Hand Cream HG,=Excellent=
Frustrating,=Poor=
Works great if you stick to the plan,=Excellent=
Got a completely different color than I ordered,=Good=
Don't like it at all.,=Poor=
First Impression,=VeryGood=
Obsessed,=Excellent=
Works great!,=Excellent=
Junk,=Poor=
Not so good,=Unsatisfactory=
Pretty good stuff!!,=Excellent=
Works for me!!,=Excellent=
so sad,=Poor=
PUREST SOAP EVER!,=Excellent=
CURLY THICK HAIR,=Excellent=
This conditioner is the best detangler ever!,=Excellent=
Wish it had worked!,=Poor=
Curls don't relax,=Excellent=
great stuff,=Excellent=
"Very Subtle and Pleasing, but not for everyone",=VeryGood=
Small but POWERFUL!!,=Excellent=
Nice matte deep red color!,=Good=
"Sorry guys, this one is a fake. You can see why in my link below",=Poor=
N-O-T  W-O-R-T-H  T-H-E  M-O-N-E-Y,=Unsatisfactory=
Hated this,=Poor=
Don't buy unless you want acne!,=Poor=
Great Product.,=Excellent=
Disappointed,=Poor=
Broke My Skin Out!,=Unsatisfactory=
My Review Forced Them to Finally List The Ingredients - An Actual Natural Soap Better Than This [ C. BOOTH DERMA],=Poor=
Not very comfy,=Poor=
best treat for clear and radiant skin,=Excellent=
Finely found something that works!,=VeryGood=
Denman Delivers,=Excellent=
not that great,=Unsatisfactory=
Best Shampoo Ever!,=Excellent=
"Effectiveness did vary with skin tone,  Nice and light.",=VeryGood=
I liked the way it smelled.. IN the bottle.,=Poor=
A SOPHISTICATED ORIENTAL FRAGRANCE,=VeryGood=
Love it!,=Excellent=
Leaked :/,=Unsatisfactory=
Right color,=Good=
of all the freeman masks...,=Good=
Birthday gift for Zum lover,=VeryGood=
jo jo baltimore,=Excellent=
Not great,=Unsatisfactory=
Completely dry and hard product,=Poor=
lotion,=Unsatisfactory=
This product contains a blend of many different oils,=Poor=
better than high end products imo,=Excellent=
Refreshing lotion,=VeryGood=
Isn't Really Your Typical Mask,=Unsatisfactory=
No.,=Poor=
don't waste your money,=Poor=
Just as decribed!,=Excellent=
Aveda Pure Abundance Volumizing Shampoo,=Good=
I won't buy again,=Unsatisfactory=
Its ok,=VeryGood=
pretty good,=Good=
Delightful,=Excellent=
Review for the Generics!,=Excellent=
Works well,=VeryGood=
Okay product...,=Good=
Pass on this,=Good=
"Heavy, Oddly Chemical Smell",=Unsatisfactory=
Does nothing,=Poor=
This stuff sucks,=Poor=
It helps dry my hair but also makes my hair stiff,=Good=
Not impressed,=Poor=
"Works well, but very thick",=VeryGood=
Stinky!,=Unsatisfactory=
Creamy,=Unsatisfactory=
Indifferent,=VeryGood=
"Okay, but I wouldn't buy it again",=Good=
LOVE,=Excellent=
Didnt work,=Unsatisfactory=
Will never purchase again!,=Poor=
Love this soap,=Excellent=
"the right idea, not quite the right formula",=VeryGood=
A Wee Bit STRONG!,=VeryGood=
not happy,=Poor=
caused a reaction,=Poor=
Not what it says.,=Poor=
"Horrible, pulls out your Lashes  even with eyemakeup remover",=Poor=
YUCK!,=Poor=
IT DOES BURN BUT I HAVE NOT PEELED,=Poor=
Not bad,=VeryGood=
Nice hair dryer!,=Excellent=
Burns My Skin and Eyes!,=Poor=
Glue sorry wrote this review under my hubby's account,=Unsatisfactory=
Trash Can Fodder,=Poor=
"I'm embarassed to say that I fell for the hype, too.",=Poor=
great item!,=Excellent=
Nope,=Poor=
I will never look back,=Excellent=
To dark,=Poor=
Does what it promises,=Good=
ugg,=Poor=
Not for my oily acne skin,=Good=
so unhelpful,=Poor=
Already saw an improvement,=Excellent=
Fake,=Poor=
Just didn't work for me,=Unsatisfactory=
Too Watery & Scent Not Strong Enough to Smell,=Unsatisfactory=
"LOVE IT, LOVE IT, LOVE IT!!",=Excellent=
Very thick,=Good=
"Minimal Damage dye HIGHLY DAMAGING \refresher\""""",=Good=
"Love Anew, but not impressed with the cleanser",=Unsatisfactory=
Tiny Treasure in a Wooden Container!,=Excellent=
Not loving it for dry hair,=Unsatisfactory=
Does great job,=VeryGood=
"PLEASE DO NOT USE THIS, SAVE YOUR SKIN.",=Poor=
Love it,=Excellent=
Seems to Strengthen and leave less frayed ends,=VeryGood=
Just go for a cucumber or plain white bar instead,=Unsatisfactory=
Is it real?,=Unsatisfactory=
Can't figure this one out,=Poor=
Try this to  hold color when doing tie-dye!,=Excellent=
barely visible,=Poor=
Ok...,=Good=
its ok,=Good=
"ok, nothing special",=Good=
Favourite Curling Iron,=Excellent=
NOT RECOMMENDED FOR AFRO-AMERICAN HAIR,=Poor=
"Strong color, shatter feature nonexistent",=Poor=
Good top coat but not 3 free and not glossy enough,=Good=
This smells amazing!,=Excellent=
very strong,=VeryGood=
Smells Horrible,=Poor=
Heavenly,=VeryGood=
"Not hydrating or soothing enough for dry, sensitive skin",=Unsatisfactory=
Cheaply made,=Poor=
Like it but it caused acne,=Good=
Nude attitude,=Unsatisfactory=
Good purchase for a non-heavy use dryer,=Good=
So far so good!,=VeryGood=
packaged poorly,=VeryGood=
A Very Good Blush to Pair with bareMinerals Foundation,=VeryGood=
Average,=Good=
Read my review and you decide if you want to purchase this product,=Poor=
"Pricey, but you will notice a difference",=Good=
Love this scent!,=Excellent=
Peter Thomas roth,=Excellent=
Ok,=Good=
Quality you can expect from Murad!,=VeryGood=
"Good mascara, not in love with the brush",=VeryGood=
Studying or Working Out ... Don't Do It!,=Poor=
One of my favroites,=VeryGood=
Lip... meh?,=Good=
Nice concept...,=Good=
"So far, no postive results",=Unsatisfactory=
Three Stars,=Good=
WARNING: may cause wrinkles and burning sensation,=Poor=
not that great.,=Unsatisfactory=
Just ok,=Good=
Great for tans,=VeryGood=
Love it!,=VeryGood=
Absolutely useless,=Poor=
Impressive results lightening darkened skin spots after just a few weeks of use!,=Excellent=
Ehh,=Good=
Not bad,=Good=
Like the older stuff better.,=Unsatisfactory=
Extremely Over Priced Bath Rag,=Unsatisfactory=
Wonderful,=Excellent=
Pass,=Poor=
Good product.,=VeryGood=
like water,=Unsatisfactory=
Great stuff!,=VeryGood=
good,=VeryGood=
See the Neutragena above,=VeryGood=
Great hand soap,=Excellent=
Good moisture!,=Excellent=
Terrific natural hair color,=Excellent=
highly disapointed,=Poor=
Love it,=Excellent=
Better than Coconut,=Excellent=
Covers well but product is thicker than I expected,=Good=
"If this were a curl enhancer, I'd give it 10 stars",=Poor=
"I bought this and the serum, but feel like it was money wasted",=Poor=
Works well but toxic,=Unsatisfactory=
Redken Smooth Down Heat,=Excellent=
The best tool to straighten my very thick and frizzy hair.,=Excellent=
Wonderful for skin care,=VeryGood=
"Smells good, but it doesn't last at all",=Unsatisfactory=
Too much menthol,=Good=
Finally something that worked,=Excellent=
Brow sealer,=VeryGood=
Wish it would get a little hotter,=Poor=
Disappointed,=Unsatisfactory=
Substandard Cleanser,=Poor=
NO MORE BOTTLES AND TUBES,=Excellent=
say goodbye this seller,=Poor=
I don't really like it,=Unsatisfactory=
colors aren't great,=Good=
Works well and not oily,=VeryGood=
OPI RED,=Excellent=
Hate every color,=Poor=
Not for me...,=Poor=
It burns!,=Unsatisfactory=
HEADS UP! Philosophy sold out,=Poor=
What's Your Hair Worth?,=VeryGood=
Color is more pink than nude.  Greasy = cheek zits!,=Unsatisfactory=
Worse than better,=Poor=
Did not do what I expected,=Good=
Great! Wish it lightened even more,=VeryGood=
it works,=VeryGood=
Quick and easy,=Excellent=
removes yellow tone,=VeryGood=
"FOR HEAVY, THICK HAIR AND NON-SENSITIVE SCALPS",=Excellent=
"OK moisturiser, but does nothing for the nails",=Good=
"One for me, and one for my mom",=VeryGood=
Nice nude polish but...,=Good=
Fine but not worth the money,=Good=
DON'T USE IT ON WET HAIR,=VeryGood=
Shake Before Using... (But Still Nowhere Near Their Best),=Unsatisfactory=
I had trouble with this,=Unsatisfactory=
To bulky,=Unsatisfactory=
BE CAREFUL IF YOU'RE TAKING STATIN MEDICATION!!!,=Good=
Love,=Excellent=
love this towel,=Excellent=
Love the color...,=Excellent=
Not sure,=Good=
white residue on face,=Good=
Not crazy about this,=Unsatisfactory=
Dark Brown Eyebrow Tint,=VeryGood=
Great for dry skin,=Excellent=
Like the Mineral Renewal,=Good=
A Dryer and Hair Conditioner Into One,=Good=
Chemically Smell,=Good=
Hydrating,=Good=
"Eh, it's ok but I wouldn't re-order",=Good=
Disappointed,=Unsatisfactory=
Wish I Could Give More Stars,=Excellent=
Works for Me,=Excellent=
Perfect for every other day,=VeryGood=
A little greasy,=Good=
Strong fragrance,=Good=
Great size for the price but leaves hair weighed down,=Good=
Good... Not a strong,=Good=
like it,=VeryGood=
Soothing night cream,=Excellent=
don't waste your money.,=Poor=
Awesome product!,=Excellent=
very nice,=Unsatisfactory=
"So far, so good!",=VeryGood=
Leaves Hair DRY!? Promises To add moisture?!,=Poor=
Bought because of great reviews but didn't work for me,=Poor=
Saw some growth but thats it,=Good=
You Have to Learn to Work With It,=Good=
Not the best Egyptian Magic Cream I have ever tried,=Good=
Great boar brush,=Excellent=
Mixing the product is annoying,=Good=
I just hate the way they leave my skin feeling like it ...,=Poor=
Yay!,=Excellent=
Color runs,=Good=
SMOOTH OPERATOR!!!,=Excellent=
Not so pigmented,=Good=
Not parfum its a spray alright,=Poor=
Good for beachy and casual look,=Good=
Dont buy,=Unsatisfactory=
Love this product and this scent,=Excellent=
Leaves Your Face Very Soft,=VeryGood=
Long Time Customer... No more!,=Poor=
Nice product that helps to hide my ridges,=VeryGood=
It does a good job of removing my makeup,=Good=
Feels Cheap,=Poor=
Total waste,=Poor=
"Call It What It Is, Please",=Unsatisfactory=
Would like to throw it in the trash,=Poor=
blah,=Poor=
does what its supposed to,=VeryGood=
Still working well,=VeryGood=
Greasy and a bit ghostly,=Unsatisfactory=
Love alba products,=Excellent=
LOVE it....,=Excellent=
Got rid of black heads and large pores!!,=VeryGood=
Don't Bother!!!,=Poor=
Gave me a sunburn,=Poor=
Not All That,=Good=
Its good,=VeryGood=
Like washing your face with a rock,=Unsatisfactory=
Grease-A-Lot,=Unsatisfactory=
"WOW, you can see a differance!",=VeryGood=
Nothing great,=Unsatisfactory=
Made my skin burn and has a horrible chemical smell,=Poor=
Disappointed,=Unsatisfactory=
Disappointing,=Unsatisfactory=
OMG!!!,=Excellent=
ok,=Good=
Terrible,=Poor=
"Better, But Not Painless",=VeryGood=
mountain ocian skin trip moisturizer,=Excellent=
The product gave me a rash,=Unsatisfactory=
Simply Amazing,=Excellent=
3 stars,=Good=
not for me i guess,=Unsatisfactory=
Avene extremely gentle cleanser for sensitive and irritated skin,=Poor=
"Not bad, especially for the price!",=Excellent=
Good product!,=Excellent=
Horrible tasting snake oil,=Poor=
Luxurious feel,=Excellent=
"Okay hair color, quick processing",=Good=
Disappointed,=Unsatisfactory=
Huh? How does this thing curl?,=Poor=
A Sun Kiss,=Excellent=
such a great find!,=VeryGood=
Smells heavenly,=Excellent=
face powder,=VeryGood=
Natural soap--I really like it,=VeryGood=
Bottle is a dud!,=Unsatisfactory=
Keeps skin soft,=VeryGood=
Can't really say,=Good=
FACE MAKEUP,=Good=
Cute,=Unsatisfactory=
Disappointed in Dove!,=Poor=
Just buy some tennis balls,=Poor=
Ehh...,=Unsatisfactory=
I don't like the feel as much as other products,=Good=
Way too strong and drying,=Unsatisfactory=
Hands down the best I've ever tried,=Excellent=
Watered down nursery home scent,=Poor=
Not what I was looking for,=Good=
Fresh and light,=Excellent=
It's ok,=Good=
"OK product, better out there.",=Good=
great light serum,=Excellent=
Great toner!,=Excellent=
Nice,=VeryGood=
eh,=Poor=
Excellent Product,=Excellent=
Black - Won't buy this one again...it chips off,=Unsatisfactory=
Didn't work for me!,=Unsatisfactory=
Not bad,=Good=
Beautiful Color,=Excellent=
Like this product,=VeryGood=
NOT Very Thickening at All,=Unsatisfactory=
Complete BULL,=Poor=
Works for me,=VeryGood=
havnt use it yet,=Good=
Makes my hair really soft,=VeryGood=
Great for dry sensitive skin!,=Excellent=
THIS REALLY WORKS,=Excellent=
Frizz Control =],=VeryGood=
Had to get back to this cream..again,=Excellent=
"Musky and Distinctive, Decent Cologne",=VeryGood=
No volume,=Poor=
not what i expected,=Good=
ugh,=Unsatisfactory=
Makes my eyes burn,=Poor=
Scent overpowering,=Good=
It's okay but hasn't done much more than other face masks have done for me,=Good=
Don't like it as much as much as other products,=Unsatisfactory=
About as effective as using my hand to brush my hair,=Poor=
"Dries slowly, not shiny, changed my nail polish color",=Good=
Doesn't work for me!,=Unsatisfactory=
"Not all that \super\""""",=Good=
I had such high hopes for this,=Poor=
"sheer, light coverage, but not very moisturizing",=VeryGood=
STINKY WIG!!!,=Poor=
Ouuuuch.,=Poor=
treatment could be stronger,=Good=
No noticable improvement at all,=Poor=
Ugh...Not what I expected...,=Good=
This is a great everyday cleanser!,=Excellent=
Very impressed,=Excellent=
Gorgeous,=Excellent=
Doesn't Last,=Unsatisfactory=
nothing,=Poor=
Not recommended for oily or acne-prone skin types,=Unsatisfactory=
Sticks to head- no visible difference,=Unsatisfactory=
Was what I needed,=Good=
Wonderful astringent,=Excellent=
"Of the two new facial cleansers from Neutrogena, this one is my favorite",=VeryGood=
irritated my skin,=Unsatisfactory=
disappointing,=Poor=
The bigger stamper works horribly and just gets a scatter of the design.,=Poor=
Seems to work,=Excellent=
an essential item if you know how to use to correctly,=Excellent=
No results seen,=Unsatisfactory=
Not good,=Poor=
Great,=Excellent=
Awful,=Poor=
"Eh, it's hair spray",=Good=
Too $$$ but after Five+ Years still Good,=VeryGood=
I HAVE NOT USED YET....,=Good=
Purple is not even close to being purple,=Good=
Not a Silk Sponge,=Unsatisfactory=
Be careful...,=Good=
Perfect 10 is the Worst!!!!!!!!,=Poor=
hmmm,=Poor=
Disappointed,=Unsatisfactory=
licensed cosmetologists review,=Good=
does what it is supposed to do,=Excellent=
Not worth it!,=Poor=
"Good, but Not Great",=Good=
Great Lotion - Overpowering Scent,=VeryGood=
Believe the Hype!!!,=Excellent=
Did not like!,=Poor=
L'Oreal Paris Pen,=Poor=
Good hairspray,=VeryGood=
Great Mist!,=Excellent=
Meh. . .,=Unsatisfactory=
Works fine,=VeryGood=
Good overall.,=VeryGood=
TRANSPARENT GEL- LIKE GORGEOUS POLISH,=Excellent=
gave this up,=VeryGood=
it's ok,=Good=
It is different than my ones from years prior...They changed the brush!,=Unsatisfactory=
works as advertised,=VeryGood=
"I'll use the pack I bought, but won't buy again!",=Good=
Somewhat Disappointed,=Unsatisfactory=
Wrinkles every time! Ugg!,=Poor=
The anticipation of its arrival in the mail proved to be more exciting than its results...Bummer !,=Poor=
Does it work?,=Good=
Still thinking about this one,=Good=
gorgeous !,=Excellent=
a bit pricey,=Good=
disappointed,=Poor=
Witch Hazel is an irritant,=Unsatisfactory=
Don't really understand the purpose?,=Good=
A little disappointed,=Good=
No difference at all,=Poor=
Disappointed,=Unsatisfactory=
Worst conditioner,=Poor=
Changing Review - Bad Basecoat,=Poor=
Good deal for the money,=Good=
"Functional with the brush, but wrong color",=Unsatisfactory=
Not sure about the fuss,=Good=
Calming Oatmeal,=Excellent=
Works Well and Does Protect Sensitive Skin,=VeryGood=
This Stuff Is Fabulous. Fabulous. Fabulous.,=Excellent=
soft skin,=VeryGood=
nice,=VeryGood=
Good Stuff!,=Excellent=
"Okay to use up over time, but I'll buy differently next time.",=Good=
slow,=Unsatisfactory=
okay product,=Good=
wonderful,=Excellent=
Affordable clean smelling fragrance.,=VeryGood=
not good,=Unsatisfactory=
Works well with a little practice!,=VeryGood=
"very moisturizing, but heavy perfume",=Good=
wont buy it again,=Unsatisfactory=
Good place to buy this product,=VeryGood=
Wall mount mirror.,=Excellent=
I hate this!,=Poor=
little moisture/not high quality like its price,=Unsatisfactory=
Dangerous because transparent,=Poor=
Got acne? Try this.,=VeryGood=
Burnt Skin,=Poor=
Not for me,=Poor=
Ok.,=Good=
"Fast absorbing, non sticky",=VeryGood=
Don't buy this. Waste of money.,=Poor=
Great product depending on your hair type...,=VeryGood=
it works,=VeryGood=
Who Stole All of My Scruby Bits?,=Unsatisfactory=
"I bought it for the \pouf!\""""",=VeryGood=
Great product,=Excellent=
New favorite,=Excellent=
Beautiful color!,=Excellent=
Leaves marks on lids,=Poor=
Works well..,=VeryGood=
AZO yeast pills,=Good=
Works great if you use Mineral conealer for your eyes,=Good=
Don't like it,=Poor=
Contains FRAGRANCE,=Good=
No need to use a lot,=VeryGood=
GOTTA HAVE IT!!,=Excellent=
bought based on reviews and regretted it,=Poor=
Original vs Ultra vs Kose,=VeryGood=
Best Astringent Ever!,=Excellent=
I love this product,=Excellent=
Cleans well but too strong for sensitive skin,=Unsatisfactory=
I don't think this is right.,=Good=
white hair,=VeryGood=
it gets hot,=Good=
Like it...,=Good=
I've noticed a difference!,=Excellent=
headache alert,=Unsatisfactory=
NOT WORTH IT,=Poor=
Smells Great!,=Unsatisfactory=
OLAY HORRAY,=Excellent=
it looks powdery,=Poor=
Three Stars,=Good=
An OK product,=Good=
too matte.,=Unsatisfactory=
"It works, stay hydrated",=VeryGood=
Cheap packaging~Foundation Alright,=Poor=
Good Creme Conditioner to Help with 4B/C Hair Breakage,=VeryGood=
Miracle of Aloe Hand Repair Cream,=VeryGood=
AMAZING STUFF,=Excellent=
"Fantastic Smell, Almost Like Doing Aromatherapy When You Shampoo!",=Excellent=
It works but....,=VeryGood=
Will get the job done but it is better suited for someone with short hair,=VeryGood=
Not moisturizing enough for me.,=Unsatisfactory=
Very Satisfied,=Excellent=
Works very well.,=Excellent=
My favorite hair straightener of all time!,=Excellent=
Nice color and price but prone to creasing/smearing,=Good=
Good and thick,=Excellent=
I'm amazed and I consider myself seasoned with peels.,=Excellent=
I dont see no significant difference.,=Good=
Not happy!,=Unsatisfactory=
Qutre Quick Weave synthetic halfwig,=Unsatisfactory=
didnt work,=Unsatisfactory=
My Fave,=Excellent=
Mixed opinion,=Good=
Returned,=Poor=
use it on my daughter,=Good=
too rough,=Poor=
Good moisturising cream,=Good=
Not bad,=Good=
Unsure,=Good=
Good ol' standby,=Excellent=
11 going on 20,=VeryGood=
A moisturizer that doesn't feel greasy.,=Excellent=
"not worth it, save your money",=Poor=
Big huge bottle of lotion,=Good=
"Gentle, Moisturizing, Effective",=Excellent=
"I like the mascara, not the brush",=Good=
I like the dry down of it.,=VeryGood=
NO,=Unsatisfactory=
"Gentle on skin, but strange looking on some hues of skin",=Good=
didn't help with my cystic acne :(,=Unsatisfactory=
Too Small,=VeryGood=
Well humm,=Unsatisfactory=
Not bad,=Good=
Still does not work,=Poor=
Creamy.,=Excellent=
Instant Heat Hot Brush,=Excellent=
it SMELLS really bad..,=Poor=
Alpha Hydrox,=Excellent=
THIS REALLY WORKS!,=Excellent=
It does work!,=Excellent=
Great product,=Excellent=
We like this soap,=Excellent=
Not what I expected!,=Poor=
Love It!,=VeryGood=
"IF they stick, theyre nightmarishly painful to remove - Buy your own paper tape and customize yourself",=Poor=
Great Product,=Excellent=
Great product,=Excellent=
Five Stars,=Excellent=
A Wonderful Body Wash,=VeryGood=
Maybe it's just me,=Unsatisfactory=
Consistently 25-50 degrees less then it is set for,=Poor=
great for dry skin,=Excellent=
"These are pretty, but they're not as nice as the white ...",=Good=
Just in Time for Easter,=Excellent=
Too much build up and hair losses body,=Unsatisfactory=
Its not what I wanted,=Unsatisfactory=
My hair loves this stuff!,=Excellent=
Acne gel,=VeryGood=
"It's conditioner, no more no less",=Good=
Needs Practice,=VeryGood=
Not so swift!,=Unsatisfactory=
Makes my skin painfully dry,=Unsatisfactory=
Difficult to use,=Unsatisfactory=
not so great,=Good=
So far it hasn't burned out.,=VeryGood=
Crazy colors,=Poor=
For a Young Girl,=Good=
Essential to me,=VeryGood=
Some of the best for the price,=Excellent=
It was expired!!,=Poor=
Great Prodcut,=VeryGood=
smells funny,=Good=
My Scalp Wept (Literally),=Poor=
Great,=Excellent=
still looking for a great powder by valviolet,=Unsatisfactory=
A skin must-have,=Excellent=
loreal color riche,=Poor=
Wouldn't buy again,=Unsatisfactory=
I Wish It Worked...,=Unsatisfactory=
Very Thin,=Poor=
not what I had hoped,=Unsatisfactory=
DON'T BE FOOLED,=Poor=
Would not recommend this,=Poor=
Leaks,=Poor=
Hate this!,=Poor=
Quality might be changing,=VeryGood=
good and clean,=VeryGood=
Nadda,=Unsatisfactory=
favorite lotion I use.,=Excellent=
don't order in hot weather,=Good=
Pretty good,=VeryGood=
Cure for brittle nails,=Excellent=
dr scholl's,=Poor=
horrible,=Unsatisfactory=
"Okay, not great",=Good=
My conditioner of choice,=VeryGood=
Does wonders for acne,=Excellent=
Good Toner,=Good=
Does nothing for me,=Unsatisfactory=
Good hairspray for flyaways and light hold,=VeryGood=
Ah. Alright,=Good=
Great color for spring,=Excellent=
good face cream,=VeryGood=
The most refreshing toner I have used!,=Excellent=
Now occupies a place of honor in my bathroom,=Excellent=
Surprisingly marvelous,=VeryGood=
"Nails improved, hair not so much yet",=Good=
Disappointment,=Unsatisfactory=
Worth the $$,=Excellent=
Pacifica Mediterranean Fig Perfume Smells Yummy But Doesn't Last,=VeryGood=
Great product,=Excellent=
"Not sure if working, but smells great!",=VeryGood=
Monster of a curling iron,=VeryGood=
Fall in love with the smell....,=Excellent=
Smells nice,=VeryGood=
"For some reason, it hurts when I put it ...",=Poor=
nope,=Unsatisfactory=
Burns. Creases.,=Unsatisfactory=
happy,=VeryGood=
Green and smooth,=VeryGood=
FOR CURLY & THICK HAIR - NICE!,=Excellent=
Not a fan of NAILPOLISH?,=Excellent=
Deceiving,=Poor=
"It's good, but not for me",=Good=
The best facial cream ! ( even though it's advertised as Hand Cream ) !,=Excellent=
Fun novelty but high-maintenance,=Unsatisfactory=
I smell old people,=Unsatisfactory=
Blue Grass By Elizabeth Arden Deodorant Cream 1.5 Ounce,=Excellent=
Very good,=Excellent=
just like all the others,=Unsatisfactory=
"\Just A Dab\"" results in Hand HEAVEN!""",=Excellent=
Not Authentic Manufacturer's Product,=Poor=
Turns your hair white and smells awful!,=Poor=
Not worth the money,=Poor=
ehhhh....,=Good=
Made my fine long hair hold curls ALL DAY!!!,=VeryGood=
Will never go back to witch hazel!,=Excellent=
More Titanium / Less Zinc,=Unsatisfactory=
"Smells a bit like cheap perfume, but it is effective for adding moisture.",=VeryGood=
small,=VeryGood=
Disappointed,=Good=
NOT for bronzing,=VeryGood=
Good Shampoo,=Good=
Stings eyes!,=Poor=
Overpriced,=Unsatisfactory=
Toppik,=Excellent=
Hasn't worked so far!,=Poor=
OK,=Good=
Not As Pictured,=Unsatisfactory=
Nice Deep Conditioning,=VeryGood=
The salt and pepper color looks like cigarette ash,=Unsatisfactory=
Bought it as a gift.,=Good=
Olay isn't for everyone...,=Unsatisfactory=
A LITTLE GREASY,=Good=
There Was No Product in Tube,=Poor=
uhhhhhhh,=Good=
Pack of 3???,=Poor=
Not sure yet,=Unsatisfactory=
It works great on rough skin.,=VeryGood=
SAD :-(,=Poor=
Love this brush!,=VeryGood=
Does not work well on thick curly hair,=Unsatisfactory=
a lot of fake reviews,=Poor=
old microbeads technology -- environmentally hazardous,=Poor=
Not For Blackheads,=Good=
"Greasy, greasy greasy.",=Good=
This product burned my eyes,=Unsatisfactory=
Shine On,=VeryGood=
"No more blackheads, redness, and acne!!!",=VeryGood=
First-hand comparison between Clarisonic and Nutra Sonic Sonic Skin Care Systems,=Unsatisfactory=
Crap.,=Poor=
Doesn't give any coverage...,=Good=
it grows on you,=VeryGood=
Not What I hoped for,=Poor=
It was ok,=VeryGood=
"A Wonderful, Old Standby",=Excellent=
It does work a bit but it's like every other face wash,=Good=
How can you not love Aveeno,=VeryGood=
Not for me,=Unsatisfactory=
Too oily.,=Unsatisfactory=
Unbelievably flimsy!,=Unsatisfactory=
Nope,=Poor=
Doesn't do much for my hair,=Good=
The nails pictured are from MASH. The nails you receive will NOT be and may not have a nail.,=Poor=
Best Formula,=VeryGood=
Wasn't for Me,=Unsatisfactory=
Item Arrived with a Broken stem to the pump....,=Poor=
No results and expensive,=Poor=
Great Serum,=Excellent=
Too Strong scented!!,=Poor=
Really Great for Sun-Damaged Skin,=VeryGood=
"Dewey, natural, with a hint of gold shimmer... you can't go wrong with Maui!",=Excellent=
Feels Amazing!,=Excellent=
Not at all what I expected from Frieda,=Poor=
Extremely old product!,=Poor=
"Why does it work for some, but not others?",=Poor=
Don't waste your money,=Poor=
Not as soft as some,=Good=
Like a Mermaid ;-),=VeryGood=
Nice Oil,=VeryGood=
Did not give me enough SPF protection,=Unsatisfactory=
Spornette Are My Favorite Hair Brush,=Excellent=
I didn't feel any difference,=Unsatisfactory=
Good price.,=VeryGood=
Buyer Beware,=Unsatisfactory=
"burn, baby burn!",=Unsatisfactory=
All honesty,=VeryGood=
I live a solid stick cover up better.,=Good=
good buy,=Excellent=
Good product to be sure,=Good=
Didn't Zap the Zits,=Poor=
love shea not the packaging,=VeryGood=
good stuff,=VeryGood=
Lightweight and SPF30!,=Excellent=
Not Very Sudsy,=Good=
Another Boots Product With Cancer Causing Agent,=Poor=
Good stuff!,=VeryGood=
BEST STUFF EVER!,=Excellent=
Great Brush for my weaves!,=Excellent=
"not \silky-straight\""""",=Poor=
Like using crushed glass.,=Poor=
My new favorite hair dye!,=VeryGood=
Nothing Supernatural Here,=Unsatisfactory=
travel case,=VeryGood=
Just Ok straightener,=Unsatisfactory=
LOVE it...,=VeryGood=
suk,=Poor=
GREASY AND GROSS,=Poor=
garbarge,=Poor=
Handy applicators,=Good=
I love it!,=VeryGood=
Great value,=VeryGood=
Great product,=Excellent=
DON'T BUY IT!,=Poor=
Does a nice job,=VeryGood=
Nicegoodfine ;),=Excellent=
I like the texture of this product and I like the ...,=VeryGood=
It's junk,=Poor=
Returned It After One Use,=Poor=
It's nice,=VeryGood=
Didn't work for us...,=Poor=
Its okay,=Good=
Get THIS Brush,=Excellent=
Try something else,=Unsatisfactory=
Hot Tools Curling Iron,=VeryGood=
Too thin to be of any help,=Poor=
Okay,=Good=
Does not stay stuck,=Unsatisfactory=
Irritated my eyes,=Poor=
Great on psoriasis,=Excellent=
"Freaking expensive, but it works",=Excellent=
It really does work,=Excellent=
Parsley Scent - Not Really,=VeryGood=
As described.,=VeryGood=
About the Best for the Money,=Excellent=
Mostly great,=VeryGood=
"Ok, but expensive and HEAVY.",=Good=
All right,=Good=
Meh.. but don't toss just yet!,=Unsatisfactory=
Not for me,=Unsatisfactory=
I do get a lot out of this,=VeryGood=
Wig It Gripper,=Unsatisfactory=
In my opinion,=Good=
disappointed,=Poor=
It works but loud,=Good=
Good but not that good,=VeryGood=
Don't like the way this product feels on my skin,=Unsatisfactory=
Great twist up with comb - but waxy formula smears,=Good=
Like it well enough,=VeryGood=
dried out my face,=Poor=
Not my favorite,=Unsatisfactory=
Sadly disappointed,=Poor=
"Piece of junk, buy this.....",=Unsatisfactory=
Pretty good,=VeryGood=
I Like It,=VeryGood=
not a fan,=Unsatisfactory=
Frizz City,=Good=
I smell like chocolate,=Unsatisfactory=
LOVE THE GEL BUT SUPER STRONG STINKY SMELL MADE ME SICK,=Unsatisfactory=
Wrong wrong wrong!,=Poor=
Like,=Good=
Wonderful for hair thick hair that tends to dry out.,=Excellent=
Love the Shade,=Good=
kinky coil hair,=VeryGood=
Smells great,=Excellent=
Son felt it helped some,=VeryGood=
Beautiful color,=Excellent=
Not strong suction,=Unsatisfactory=
Works Great,=Excellent=
"Pretty Good, But Here's a Few Tips to Make it Better",=VeryGood=
Love Revlon,=Excellent=
Crap,=Poor=
roc deep wrinkle serum,=Excellent=
Wasted money,=Unsatisfactory=
Broke me out,=Good=
Awesome for Co-wash for 3B Curls,=Excellent=
This stuff will ruin your hair.,=Poor=
"I don't see any results, don't like the medicine smell",=Unsatisfactory=
mehh..,=Unsatisfactory=
Ash = RED??,=Unsatisfactory=
Bad for wheat sensitive,=Poor=
BEWARE: Version sold is not the version advertised.,=Poor=
Doesn't go on how it looks in the bottle,=Poor=
IT'S NOT GARGANTUAN GREEN GRAPE!,=Poor=
Didn't Work For Me,=Unsatisfactory=
maybe for someone/something else?,=Good=
Nexxus Vita Tress Biotin Shampoo,=Unsatisfactory=
There are better frizz-fighers,=Good=
Clog pores,=Unsatisfactory=
I'm a lifer,=Excellent=
plz dont waste ur money,=Poor=
Hard to use,=Unsatisfactory=
Probably does it's job,=Good=
****** $ For the price Great Product ******,=Excellent=
CRAP!,=Poor=
Cumbersome but has good results,=VeryGood=
It made me break out!,=Poor=
Nice Coverage,=VeryGood=
Only Works While You're Wearing It.,=Good=
Terrific!,=Excellent=
Great value for the price,=VeryGood=
Like a completly different perfume itself,=Poor=
Do NOT pay $20 for this!,=Poor=
makes my wife smell worse when she works out,=Unsatisfactory=
I purchased it March 2011. It just died,=Good=
Jury is Still Out,=Unsatisfactory=
"Reviva Labs Glycolic Acid Facial Toner, 4 Ounces",=Unsatisfactory=
"GOOD SCENT, but NOT for under 30 women",=Good=
Aveeno Clear Complexion,=Excellent=
stretchy headband,=Poor=
No necessary.,=Unsatisfactory=
Not bad,=Good=
Mirror,=Unsatisfactory=
Awesome!,=Excellent=
I  have to say this did ZERO to my hair,=Unsatisfactory=
Nice,=VeryGood=
It straightens but hard to curl with,=Good=
I don't believe it.,=Excellent=
Love it,=Excellent=
Good Perfume,=VeryGood=
Working so far,=VeryGood=
Dove has done better,=Good=
Not Good,=Poor=
Gets the job done,=Excellent=
just OK,=Good=
Returned,=Poor=
Maybe for girls who don't need it.,=Unsatisfactory=
came quickly in mail,=VeryGood=
Irritating for Sensitive Skin,=Poor=
Like putting greasy caulk on your face,=Poor=
Lovely product but..,=Good=
I AM SURE THIS IS GOOD FOR OTHER TYPE SKIN,=Poor=
Expectations may have been too high.,=Good=
pretty damn good!!,=VeryGood=
Great!,=Excellent=
Horrible,=Poor=
Nice features-great warranty,=VeryGood=
Winner for African American Natural Hair,=Excellent=
Too Dry and Too Much Feathering,=Unsatisfactory=
Not sure what the hype is,=Good=
Meh,=Poor=
woo!,=VeryGood=
Works very well,=Excellent=
"If you have wavy but fine, frizz-prone hair -- Forget it. Use Low-Poo instead",=Unsatisfactory=
Great for repairing damage or for general maintenance,=Excellent=
Perfect for Winter Weather,=VeryGood=
"Lovely natural, pure stuff but packaging complaint.",=VeryGood=
Bubble Bath Nail Polish,=VeryGood=
It's ok.,=VeryGood=
NOOOOOOOOOOOOOOOOOOO!!!!,=Poor=
nice scent,=VeryGood=
Pretty darn good.,=VeryGood=
Gave me pimples,=Unsatisfactory=
wrinkle treatment,=Poor=
STICKY!,=Unsatisfactory=
So-so,=Good=
omg...,=Excellent=
Works well for men with oily skin,=VeryGood=
Love the fragrance,=Good=
Some great features about this product!,=VeryGood=
One of the best self-tanners,=VeryGood=
loreal color,=Poor=
Great product,=VeryGood=
It's ok,=Good=
Just too expensive,=VeryGood=
Don't really care  for it...,=Unsatisfactory=
Super clumpy and dry,=Poor=
Initial Reaction,=Good=
Not bad,=Good=
Dried out my skin,=Unsatisfactory=
REALLY?,=Poor=
Don't Waste Your Money,=Poor=
GREAT Color,=Excellent=
Makes My Nails Peel!,=Poor=
Great color green,=VeryGood=
Red  Hot!,=Excellent=
A basic good loose powder,=VeryGood=
it's okay,=Good=
"Hard to Use, But Nice When It Turns Out As Intended",=Good=
covergirl lineexact liquid eyeliner,=Good=
Hydrates Your Skin Perfectly!,=Excellent=
"For the price,it delievers",=Good=
Leaves hair shiny and soft,=VeryGood=
does not work,=Poor=
I love the color but...,=Unsatisfactory=
Wonderful,=Excellent=
Makes my hair look worse,=Poor=
Didn't like it,=Poor=
very unsatisfied,=Poor=
Works wonderful!!,=Excellent=
Hmm..,=VeryGood=
They Do a Good Job,=VeryGood=
Hmm...,=Good=
They look Real!,=VeryGood=
Not for me,=Poor=
Probably not good for sensitive skin...,=Good=
"Sweet Lemon...not. In fact, rancid and no longer made by Body Shop",=Poor=
Impressed!,=Excellent=
Best Bobbies!,=Excellent=
Spellcheck Overload!,=Good=
Works just as it says it does,=Excellent=
Disappointed,=Poor=
Zit Me!! Foundation,=Poor=
Perfect conditioner until I bleached my hair,=Good=
Not loreal,=Excellent=
Numerous uses,=Excellent=
my nose knows,=Poor=
"Nice, gentle toner",=VeryGood=
Love it,=Excellent=
Not Perfect,=Unsatisfactory=
Maybelline flared mascara,=Unsatisfactory=
Great smell and decent leave in conditioner,=Good=
"Work well, not as big as I had hoped",=VeryGood=
Doesn't work for Me...,=Unsatisfactory=
3 stars because I love the bottle,=Good=
So so hairspray,=Good=
Not good.,=Unsatisfactory=
UGH!,=Poor=
don't waste your money,=Poor=
Soap,=Excellent=
Dove NutriMoisture,=Good=
I Know What You're Thinking About The Price . . . .,=Excellent=
Weird scent,=Good=
Noticed a difference immediately,=Excellent=
Sensitive skin? Read this!,=Excellent=
"Works well to clean, but not much more than that",=Good=
Nice color but too frosty,=Good=
store brands are better,=Unsatisfactory=
Not as great as other cheap brands,=Unsatisfactory=
Be careful...,=Good=
WELL WORTH THE PRICE,=Excellent=
"\...stays on throughout my coffee sipping morning\""""",=Excellent=
Well-made and just as described. Bristles are not too stiff or too soft -- just right!,=Excellent=
Glass bottle so annoying!,=Good=
it helps,=VeryGood=
couldn't get this product out!!!,=Poor=
Color is a bit too bright,=Unsatisfactory=
best face wash everrrrr,=Excellent=
A great toner,=VeryGood=
"Stick with it, it gets better",=VeryGood=
soft skin but a bit greasy,=VeryGood=
Not sure if it works yet !!,=VeryGood=
Not great,=Poor=
works,=Excellent=
"STRONG chemical odor - weighs down fine hair, leaves hair oily - I had better luck with coconut oil left on overnight in cap",=Unsatisfactory=
complete protection,=VeryGood=
nothing happened,=Unsatisfactory=
Imagine my surprise: the best is one of the cheapest,=Excellent=
A generous Fancy 3 stars,=Good=
Received the wrong polish.,=Poor=
Bath Gloves,=Unsatisfactory=
Not a big fan,=Good=
Good application but not good enough protection ** UPDATE - new formula is terrible,=Poor=
Isn't working for me,=Poor=
wowza,=VeryGood=
Not sure...Please read update,=VeryGood=
It's okay,=Good=
Sensitive Skin BEWARE...,=Good=
"Alpha Hydrox Foaming Face Wash, 6 oz",=Excellent=
I have had this product for two years... and I can't seem to run through it,=Excellent=
Terrible. Don't waste you money.,=Unsatisfactory=
machine lost suction... and no way those are diamond tips,=Unsatisfactory=
Great lotion,=VeryGood=
This lotion smells horrible,=Poor=
Great product,=Excellent=
Overrated,=Good=
Nothing special,=Good=
Simply Amazing!,=Excellent=
Kinda disappointed,=Poor=
Great Product,=VeryGood=
Straghtener,=Excellent=
"Plenty of Buck, but... no Bang :o(",=Poor=
Made my hair sticky,=Unsatisfactory=
it fell apart in a month,=Poor=
It works..but please be careful,=Good=
Didnt help my husband hair!,=Poor=
Not so sure,=Unsatisfactory=
Just a pretty mirror,=Unsatisfactory=
Great stuff!!,=Excellent=
Dry brushing,=VeryGood=
Will not repurchase,=Unsatisfactory=
2 x SLS...,=Poor=
its okay.,=Good=
Just a plain out regular moisturizer & nothing more,=Poor=
Five Stars,=Excellent=
Nice,=VeryGood=
Octinoxate...,=Poor=
Not too bad!,=VeryGood=
really effective for dandruff,=Excellent=
Love this brush!,=Excellent=
A must have for me,=Excellent=
Does not blend well,=Good=
"Smells like my mom, or granmother...",=Unsatisfactory=
Fragranced Skin Food...,=Poor=
leg and body make up,=Good=
I wanted to love this!,=Good=
Cute and Wonderful!,=VeryGood=
not much improvement,=Good=
Works but isn't the best!,=Good=
Tried and failed,=Unsatisfactory=
Leaks!,=Poor=
Nice and Easy to Use,=VeryGood=
happy with it,=VeryGood=
Great if you plan on not moving a muscle or adding more makeup,=Poor=
Very good product,=Excellent=
quick absorbtion,=Excellent=
"Good price, half pigmentation",=VeryGood=
ripped after a couple months of use,=Unsatisfactory=
too dark,=Poor=
revlon lip butter,=Poor=
meh,=Unsatisfactory=
My Skin is too Sensitive for this Brand of Black Soap,=Good=
Won't Use Anything Else,=Excellent=
Meh...,=Unsatisfactory=
So-so,=Good=
JUNK,=Poor=
Great product,=Excellent=
May work for some people,=Good=
Bottle Size,=Unsatisfactory=
Is it Coming Out or Not?,=Unsatisfactory=
Love it!,=Excellent=
great!,=VeryGood=
Great At Home Peel,=Excellent=
So-so,=Good=
Nice smell and feel,=VeryGood=
bad reaction,=Poor=
Great ITEM!!,=Excellent=
Stretch marks and facial blemishes,=VeryGood=
8 oz lasts a LONG time,=Excellent=
My Skin's too sensitive,=Unsatisfactory=
HATE IT!,=Poor=
do not get this if you're a woman of color,=Unsatisfactory=
Be a Smart Consumer and Avoid this Product ...,=Poor=
"not as good as macademia, moroccan, or better yet homemade oils",=Unsatisfactory=
Eh,=Good=
Why pay more?,=Excellent=
Good until you try something better.,=Unsatisfactory=
Amazing feeling for your skin BUT....,=Unsatisfactory=
"Just like vaseline, waste of money!",=Poor=
Works for me too!,=Excellent=
works well,=VeryGood=
Good stuff,=VeryGood=
Nice but no younger,=Good=
Three Stars,=Good=
Great color/Great polish,=Excellent=
Best Beauty Products = Big Bucks,=VeryGood=
The liner is okay nothing special,=Good=
no mention you need to purchase an oxidant separate,=Poor=
I threw away most of the product,=Unsatisfactory=
Four Stars,=VeryGood=
Too much hype for a 'so-so' product,=Unsatisfactory=
Greta q tips!,=VeryGood=
Not for me,=Poor=
Darnit... another skin product failure.,=Poor=
Save your money - very little argan here!,=Poor=
love,=Excellent=
Love this!,=Excellent=
Not Recommend,=Unsatisfactory=
No staining,=Excellent=
Changing colors but still good,=VeryGood=
Amazin Flat Iron!,=Excellent=
Good moisture!,=VeryGood=
Awful,=Poor=
"Nice Eye Cream, great for the price!",=VeryGood=
Nothing special,=Unsatisfactory=
Great rollers,=Excellent=
Worst example of what to use on gels to finish them off,=Poor=
eh,=Good=
Great bang for your buck but kind of shiny,=VeryGood=
Unfortunatley Not Sulfate Free,=Unsatisfactory=
"Strong chemical scent, no silicone shine",=Unsatisfactory=
Easy to aply,=VeryGood=
good product,=VeryGood=
Not FDA Approved,=Good=
Conair 1' curling iron,=Poor=
Not my favorite ORS product,=Unsatisfactory=
only for 2 months,=Poor=
Really Nice!,=Excellent=
Very oily but good!,=VeryGood=
Great Product,=Excellent=
Not very effective,=Good=
Didn't do anything,=Poor=
Bulk!,=Excellent=
It's okay.,=Good=
Torn...,=Good=
waste,=Poor=
Goes on smooth and looks amazing,=Excellent=
Smells great,=Good=
HORRIBLE,=Poor=
Smells great!,=VeryGood=
Good but not great....,=VeryGood=
Sodium Laurel Sulfate is bad for hair and health.,=Poor=
"Works well, but it is easy to \overdose\"" on this product""",=VeryGood=
what a color!!,=Excellent=
Much darker than I expected,=Unsatisfactory=
Be careful,=Good=
This is the best sunscreen we have found!,=Excellent=
Sally Hansen does the fast dry top coat better and cheaper,=Unsatisfactory=
Love Love Love!!,=Excellent=
The lights on this thing go out constantly. You ...,=Poor=
Very sticky,=Unsatisfactory=
Meh.,=Good=
Why No Expiration Date?,=VeryGood=
"So far, fantastic...",=VeryGood=
"Eh, just like any ol ordinary shampoo",=Unsatisfactory=
Nope,=Poor=
Strange scent,=Poor=
Softens my hair but...,=Good=
"Long Lasting, Beautiful Color, Slow to Chip",=Excellent=
It's Alright,=VeryGood=
works,=VeryGood=
Made my not so sensitive skin break out,=Unsatisfactory=
Just not good,=Poor=
Nice cleanser,=VeryGood=
Meh. Okay I guess,=Unsatisfactory=
no results,=Unsatisfactory=
Haven't used yet,=Poor=
Great detangler,=Good=
Good Product,=Excellent=
Disappointed,=Good=
Grandma aroma,=Good=
Great price for a great product,=Excellent=
It's even better in person,=Excellent=
Too thin and not for gel-mani,=Unsatisfactory=
Nails Broke (OPI Nail Envy Original Natural Strengthener),=Unsatisfactory=
Smelly but works,=Excellent=
Works great and smells fantastic,=Excellent=
"Ok Almond oil, but where's the \sweet\"" part?""",=Good=
No good,=Poor=
Such a nice indulgence,=Excellent=
"Decent for Covering Dark Circles, but Doesn't Work Well under Powdered Makeup.",=Good=
So So,=Good=
"Smooth, creamy, hydrating",=VeryGood=
Use very thin layer and balance out with an acid!,=VeryGood=
Glad you still offer it,=VeryGood=
perfect hair every time.,=Excellent=
OVER PRICED FOR SIZE!,=Good=
The product was so old that it was unusable,=Poor=
No Smell!,=Excellent=
Ineffective product with many dangerous ingredients,=Poor=
Great BHA exfoliater,=Excellent=
Great!,=VeryGood=
Silky,=VeryGood=
Meh...,=Good=
Feel good - I like it,=VeryGood=
Not quality crystal!,=Unsatisfactory=
my least favorite foundation.,=Poor=
doesn't work for me,=Poor=
Good,=VeryGood=
Not my favorite,=Unsatisfactory=
useless,=Poor=
Pink Grapefruit Facial Cleanser,=Unsatisfactory=
"Sex in the City \Love\""""",=Poor=
One of my favorite ones. A bit over priced though.,=VeryGood=
Good product but I don't care for the smell.,=Good=
Aveeno moisturizers literally cured my atopic dermatitis,=Excellent=
DIDN'T GET WHAT I PAID 4!!!,=Poor=
disappointed,=Good=
not very good quality,=Poor=
works!,=Excellent=
covergirl mascara,=Unsatisfactory=
Utter crap.,=Poor=
Didn't work for me,=Unsatisfactory=
Works as it should,=VeryGood=
This does magic,=Excellent=
good and reliable,=Excellent=
Ruined my hair,=Poor=
Destroyed my skin...,=Unsatisfactory=
Excellent fragrance - but doesn't last,=Good=
Smells good but hard to get out of the bottle!,=Good=
"Ok, could be better",=Good=
"Good product, icky smell",=Unsatisfactory=
The worst!,=Poor=
DO NOT use this foam dye!!!,=Poor=
Love this stuff!,=Excellent=
It really works!,=VeryGood=
Ordered in error,=VeryGood=
Not entirely sure what it was supposed to do,=Unsatisfactory=
"Oh the Flakes, the flakes!",=Poor=
It didn't help my dry processed hair,=Unsatisfactory=
Large,=Excellent=
Good Brush,=Good=
Works For Me,=VeryGood=
Great,=Excellent=
by valviolet,=Unsatisfactory=
MEH,=Unsatisfactory=
Didn't work for me,=Poor=
Waste of $-other products can achieve the same result for less,=Poor=
Perfect,=Excellent=
Formed scabs on my scalp,=Poor=
Fast Shipping,=Excellent=
Works pretty good,=VeryGood=
really expensive for only a couple uses!,=Unsatisfactory=
Awesome,=VeryGood=
"Great in theory, not in practice",=Unsatisfactory=
Hives,=Poor=
It's a well-made brush,=Good=
Skin Has Not Improved,=Good=
It just sits in my cabinet.,=Unsatisfactory=
Made of toxic substances... but works well on hair,=Unsatisfactory=
I've used better,=Unsatisfactory=
Little dab 'l do ya,=Good=
prefer individual colors,=VeryGood=
Its ok,=VeryGood=
"Noticed Nothing, I'm 26.",=VeryGood=
Not for me.,=Unsatisfactory=
Smell is too much!!!,=Good=
Not the best for thin hair,=Good=
"Soft, Smooth, a Bit of Residue-Feel",=Good=
Cheaply made and flimsy.,=Poor=
no thank,=Excellent=
cakey,=Poor=
"works fine, and smells okay",=Good=
Okay,=Good=
Great Scent - Small Bottle,=VeryGood=
Not worth buying,=Unsatisfactory=
Imposter????,=Good=
Great moisturizer,=Excellent=
Hair Fail,=Poor=
not great,=Unsatisfactory=
Using it for years,=Excellent=
L'oreal can do better.,=Unsatisfactory=
Hum...,=Unsatisfactory=
Awful product,=Poor=
HORRIBLE BUY!,=Poor=
Listen to us!,=Poor=
Bought this but don't use it.,=Unsatisfactory=
pca skin collagen hydrator,=Poor=
Came out true to color,=VeryGood=
Great Product,=VeryGood=
Works great with the Clarisonic!,=Excellent=
Neutral Lipgloss,=Excellent=
I wont be repurchasing this shampoo,=Good=
luv Neutrogina Triple Moisture Deep Recovery Hair Mask,=Excellent=
fast!,=VeryGood=
it works well...,=Good=
TERRIBLE,=Poor=
Love this product,=Excellent=
Smaller than expected,=Unsatisfactory=
Interesting,=VeryGood=
Super setting spray,=VeryGood=
Too sticky,=Poor=
Excellent,=Excellent=
Darn packaging!,=Unsatisfactory=
Blushing,=Excellent=
Scent of soap remains on dishes,=Poor=
cheap imitation,=Unsatisfactory=
love this conditioner,=Excellent=
Dry skin and rash...,=Poor=
Lovely face moisturizer,=VeryGood=
"Lush has amazing Products, this one is one of the best",=Excellent=
Compared with T3 Tourmaline Hair Dryer,=VeryGood=
Very drying,=Poor=
"Nice Product, Not All-natural",=Good=
Mask,=VeryGood=
The no messing around clarifying shampoo that stinks,=VeryGood=
This works,=Excellent=
my new best lotion,=Excellent=
Works well,=VeryGood=
A little goes a long way,=Excellent=
"Just an ordinary dryer, but more expensive!",=Good=
Too Drag Quennie,=Unsatisfactory=
no stars,=Poor=
Must Be Maybelline's Idea Of A Joke,=Unsatisfactory=
Nope,=Poor=
works well,=VeryGood=
not for dry skin,=Good=
Made For A Woman But Usable By A Man... Though I'm Not Sure He'd Want To,=Good=
Exfoliating Facial Gel,=Good=
Not for me,=Unsatisfactory=
Hawaii for your Head,=Good=
Makes my skin break out,=Poor=
Smells Like Perfume,=Unsatisfactory=
hmm,=Good=
no real difference in pores,=Good=
no,=Good=
Alpha Hydrox,=Unsatisfactory=
I love it,=VeryGood=
Good for Dry skin,=VeryGood=
Just Me... Good fragrance - lacks longevity...,=VeryGood=
Great! But wheel sucks,=Good=
Does NOTHING,=Poor=
Great,=VeryGood=
didnt love it,=Good=
I have never had allergies but I sneezed like crazy when I smelled the open bottle,=Unsatisfactory=
wonderful find,=VeryGood=
Not for me..,=Good=
not that good,=Unsatisfactory=
Love it!,=Excellent=
Great Moisture Conditioner,=Excellent=
That's Mr Raccoon Eyes to you!.....,=Good=
Puts you and your dog to sleep with no side effects,=Excellent=
Did not work for me,=Unsatisfactory=
NOT what I ordered.,=Unsatisfactory=
Love it and Fast Results!,=Excellent=
doesnt smell much like coconut,=Unsatisfactory=
broke first time using it,=Poor=
Gooey and gloppy,=Poor=
"After 30 years, won't buy it again",=Unsatisfactory=
fresh smell,=Good=
Wife Hates It,=Poor=
level 2 is the way to go!,=Excellent=
Five Stars,=Excellent=
Don't like,=Poor=
"Very drying, causes splits around fingernails",=Good=
Amazing on extremely curly hair,=Excellent=
works great,=Excellent=
Dont like it:(,=Good=
ok,=Good=
I had to return it,=Poor=
Questionably noticeable results when tried on several 30-somethings and 40-somethings.,=Good=
Great product,=Excellent=
it hurts,=Unsatisfactory=
Silver gray hair brightner,=VeryGood=
Lovely Rose Scent,=Excellent=
No longer impressed.,=Unsatisfactory=
Smelly,=Poor=
Jar was opened--will not buy again.,=Poor=
"Plate works good, but lots of practice needed",=Good=
Great stamping polish,=VeryGood=
Part of my nightly routine,=Excellent=
"Minimizes pores and smoothes skin, good price",=Excellent=
ehhh...,=Good=
left my hair and scalp so dry :(,=Poor=
Smell is way too strong and makes me sneeze for hours after using it.,=Poor=
Works more like a primer for me.,=VeryGood=
OK,=Unsatisfactory=
Good dye but get two boxes,=VeryGood=
Great hot air brush,=Excellent=
Done with this product!,=Poor=
Not my preference,=Unsatisfactory=
Burned my skin something terrible,=Unsatisfactory=
Not for me.,=Unsatisfactory=
Read Ingredients...,=Poor=
It'll do,=Good=
Le Male on Sale,=Excellent=
Wonderful Moisturizing Conditioner,=Excellent=
"Was a bit worried to use it, but it's awesome",=VeryGood=
Maybelline Great Lash...,=Excellent=
Nothing special..,=Poor=
Re: Nice Box,=Excellent=
Pretty Colors But...,=Unsatisfactory=
Love,=Excellent=
yellow,=Good=
Goes on smooth but flakes all over your face,=Unsatisfactory=
My Hair Needed Protection,=Excellent=
this foundation sucks,=Poor=
"Be careful, it has more than minerals in it!",=Unsatisfactory=
Will Not Dry Thick Wavy Hair,=Unsatisfactory=
Too flowery,=Poor=
Aussie Hair Insurance Leave in Conditioner,=Excellent=
Excellent product,=VeryGood=
Gave me a headache!,=Poor=
Good occassional cleanser,=Good=
Dose it do angthing at all?,=Poor=
after shower,=VeryGood=
Darn....Not so great.,=Unsatisfactory=
A REAL STEP AND FACE SAVER,=VeryGood=
Didn't smell like redcurrant and basil to me,=Unsatisfactory=
Awful,=Poor=
Pureology Convert,=Excellent=
Very refreshing snd subtle scent,=VeryGood=
smell is too strong!,=Poor=
excellent product,=Excellent=
My husband really likes it,=Excellent=
"Excellent product, but pooped out on me suddenly",=Good=
Awkward.,=Poor=
HORRIBLE!,=Poor=
Real Lanolin,=VeryGood=
Decent.,=Good=
Amazingly perfect,=Excellent=
"Best \exfoliating\"" moisturizer out there""",=Excellent=
Dealing with the smell,=VeryGood=
good stuff,=Excellent=
"pretty good, but the bottle does not have a proper dispenser",=Excellent=
Snagged my hair,=Unsatisfactory=
Great Little Brush,=Excellent=
Amazing for my acne,=Excellent=
just in case,=VeryGood=
Regular ol' soap....,=Poor=
A flat iron is easier.....,=Good=
Love it..updated review: Awful packaging,=Good=
Redness reduction,=Good=
Ok,=Good=
Did nothing,=Poor=
"Smooth, Opaque",=Excellent=
The Best Tool for Hair,=Excellent=
One of my favorite scents.,=Excellent=
Good Conditioner but it's soo $$,=Good=
Where have you been all my life,=Excellent=
Junk,=Poor=
"Smells bad, doesn't work well",=Poor=
My life saver!,=Excellent=
Could be better,=Good=
BEAUTIFUL!,=Excellent=
THE HONEYSUCKLE ONE WORKS MUCH BETTER ON MY HAIR TYPE,=Good=
Love It!,=Excellent=
Not for me,=Unsatisfactory=
"Soap is excellent, but it doesn't last long enough ~ Good for a magician",=Good=
VERY small,=Poor=
Fantastic Primer,=VeryGood=
Not good,=Unsatisfactory=
Perfect,=Excellent=
Must have gotten a bum pack!,=Poor=
Oil free my behind.,=Unsatisfactory=
new best friend in oils,=Excellent=
LOVED IT,=Excellent=
Not what i wanted,=Unsatisfactory=
Beautiful Color,=Excellent=
"Not for color treated, dry hair",=Good=
Burns eyes and gives pimples,=Unsatisfactory=
okay cleanser,=Unsatisfactory=
Does whats needed,=Excellent=
misleading,=Poor=
I don't like it,=Unsatisfactory=
Orange Streaks are not my style,=Poor=
Allergic Reaction!!,=Poor=
Sigh..,=Poor=
"Works Great, Looks Nice",=VeryGood=
Great white!,=VeryGood=
Guilty pleasure!,=Excellent=
Worked Ok,=VeryGood=
Hair clips,=VeryGood=
Very dry,=Good=
Too Greasy,=Good=
Complete junk,=Poor=
cheap,=Unsatisfactory=
Good Product,=VeryGood=
Sally Hansen Double Duty Base & Top Coat,=Good=
Fake,=Poor=
Got it as a gift but ready to chuck it,=Poor=
Good,=VeryGood=
Not what I expected,=Unsatisfactory=
Rich cream,=VeryGood=
"Cruelty free, works and does not cause break outs",=Excellent=
sweet spray,=VeryGood=
smooth,=Excellent=
Crazy reactions,=Unsatisfactory=
doesn't stick,=Poor=
anti-aging scrub,=VeryGood=
Best suited for dry skin,=Good=
Philosophy girl!,=Excellent=
LOVE IT,=Excellent=
"Seems to work, but very difficult to dispense!",=Unsatisfactory=
Not the greatest,=Good=
Good product,=Excellent=
Didn't work for me,=Unsatisfactory=
Sheap Better Lotion,=VeryGood=
One Of Olay's Better Products,=VeryGood=
Way too perfumy,=Unsatisfactory=
Pretty - more orange in person,=VeryGood=
WORKS... but US version is different than the original French - BEWARE,=Unsatisfactory=
Not Worth It,=Unsatisfactory=
Great moisturizing product but not enough bronzing,=Good=
Couldn't get this to work,=Unsatisfactory=
Good polish,=VeryGood=
Definately not worth all the hype,=Unsatisfactory=
You get what you pay for,=Unsatisfactory=
Miracle cream,=Excellent=
Greasy...,=Unsatisfactory=
i wouldn't recommend,=Unsatisfactory=
Very creamy,=VeryGood=
Built up not that great.,=Unsatisfactory=
Perfect,=Excellent=
Not for me.,=Unsatisfactory=
yuck,=Poor=
Expected better,=Unsatisfactory=
Great,=VeryGood=
Returned this,=Poor=
"Not as expected, very faint",=Good=
Inexpensive,=Good=
Crap.,=Poor=
I also feel like this works better when you work out,=Unsatisfactory=
Not what it's cracked up to be.,=Unsatisfactory=
Too slick,=Poor=
No progress,=Poor=
Good for Price,=VeryGood=
It does what it says it does,=VeryGood=
So So,=VeryGood=
"Extremely easy to use, gives my hair body, shine and bounce!",=Excellent=
Does What It's Supposed To,=VeryGood=
Lovely creamy texture,=Good=
Awful!!,=Poor=
Great basecoat,=Excellent=
Haven't Noticed Any Results At All,=Unsatisfactory=
"Great scent, good performance, a luxury in the kitchen",=Excellent=
hard to use efficiently so it ends up being too expensive.,=Good=
A decent eye makeup remover.,=Good=
Helps my dry skin.,=VeryGood=
Impossible permenent RED? Poof!,=Excellent=
Awesome,=Good=
Great comb,=Excellent=
soap,=Poor=
Smells SOOOOOO STRONG!!!!!,=Unsatisfactory=
awesome,=Excellent=
smells wonderful,=VeryGood=
Not a great iron...,=Poor=
Been using for last 3 years,=VeryGood=
writing titles is the hardest part of the review,=Good=
Great Face,=Excellent=
the scent ruins it,=Unsatisfactory=
This liquid soap is one of the best I've used,=VeryGood=
Bare Escentuals Flawless Application Face Brush,=VeryGood=
Never received,=Poor=
"Moisturizing, just make your hair stink a lil lol",=Good=
love this color,=Excellent=
LOVE THIS ITEM!!,=Excellent=
Awesome Product!!,=Excellent=
Stays Damp On Face,=Unsatisfactory=
Excellent,=VeryGood=
Must-have supplement,=Excellent=
to light,=Unsatisfactory=
Sigma Kabuki - F80,=Unsatisfactory=
A Bit Greasy,=Good=
It leaves residue,=Unsatisfactory=
3 yrs strong,=VeryGood=
"awesome smell, but doesn't last long",=VeryGood=
"Wonderful for what it is, but question marks in general on silicones safety on skin.",=Good=
Nothing Works Like it....or Smells Like it! Mmmmm.,=Excellent=
Not impressed,=Unsatisfactory=
Works wonders,=VeryGood=
It could use some improvements,=VeryGood=
I bought this at Rite-Aid,=Excellent=
"not initially impressed, will give it more time, but...",=Unsatisfactory=
The best,=Excellent=
Such great lotion...,=Excellent=
Nasty Habit prompted purchase of this Nasty Nail Polish.,=Excellent=
Love this stuff,=Excellent=
Shine on...for a little while,=VeryGood=
Its like silk on my face!!!,=Excellent=
Best Adhesive By Far,=Excellent=
NOTHING like the picture I dont and wouldnt even use ANY ...,=Poor=
Good coal tar shampoo,=VeryGood=
Average eyeliner,=Good=
Not great,=Unsatisfactory=
Great Face Protection without the massive chems,=VeryGood=
Charlie Gold is better than Charlie!,=VeryGood=
I love this scent that you don't find often in retail stores!,=Excellent=
Soft then sticky,=Good=
Oh My Shea Heaven!!!!,=Excellent=
Marvelous for Drying Acne,=Excellent=
Good for practice beginners like myself,=Unsatisfactory=
3-4 uses and you're done,=Poor=
Didn't do much...,=Unsatisfactory=
Works!,=VeryGood=
Really good,=VeryGood=
Depends on ur taste in curls.,=VeryGood=
"Dry skiners, read on! =)",=Excellent=
Did not like it,=Poor=
Fun Sponge,=Unsatisfactory=
"good hold, but hair looks dry and lifeless",=Good=
great scrub for oily acne prone skin!,=Excellent=
Love.,=Excellent=
"Lovely shade, but do not dare sweating",=Good=
I will used this soap for the rest of my life!,=Excellent=
My face didn't like this product,=Unsatisfactory=
Works well but overpriced...,=VeryGood=
Just ok.,=Good=
Repairs-but not instantly,=VeryGood=
Don't like it,=Poor=
"Good, but not as good as I expected.",=VeryGood=
Escape cologne 3.4 ounce,=Unsatisfactory=
yuck!,=Poor=
Soooo smooooooth!!!,=Excellent=
Mixed feelings...,=Good=
Not for My foot,=VeryGood=
Maybelline Instant Age Rewind Primer,=Unsatisfactory=
Not worth the money,=Unsatisfactory=
Oil is lovely but the scent is strong,=Good=
comfortable,=Excellent=
Don't Be Fooled,=Excellent=
premier dead sea eye serum,=Poor=
My husband likes it...,=Good=
Works well for my hair,=Excellent=
Makes shiny nails and drys fast,=VeryGood=
"Photo shows color much darker and not very accurate, but porduct feels nice and is a nice color.",=Good=
Crap,=Poor=
"\Extra-intense\""... for about 5 seconds""",=Unsatisfactory=
best. smell. ever.,=Excellent=
Not Great,=Unsatisfactory=
WHY DID I WASTE MY MONEY??,=Poor=
Best alternative to bleaching.,=VeryGood=
Great Standby,=Excellent=
Black?,=Unsatisfactory=
Cheap and efficient,=Good=
Smooth and even,=VeryGood=
Love this.,=Excellent=
Wonderful scent addition for many uses,=Excellent=
Love this cologne.,=Excellent=
Would def buy again.,=Good=
For those of us who need a heavy conditioner...,=VeryGood=
Didn't do much,=Good=
Great cleanser for a reasonable price,=Excellent=
"So far OK, but contains parabens",=Good=
Not for me,=Unsatisfactory=
This product felt like it damaged my hair more.,=Poor=
Eh...,=Good=
I hate it,=Poor=
Ill conceived and cheap,=Poor=
So so,=Good=
Terrible quality,=Poor=
Not the same as you buy in store,=Unsatisfactory=
Not a fan,=Unsatisfactory=
The stench!,=Unsatisfactory=
3 random pairs,=Unsatisfactory=
Would not reccommend,=Unsatisfactory=
dml moisturizing lotion,=Poor=
Looks Pastey,=Unsatisfactory=
Hair oil,=Good=
Fabulous!,=VeryGood=
nice,=Good=
Good,=Good=
Please Read Warranty Void with Amazon,=Poor=
"I love Image Skincare, but...",=Unsatisfactory=
My only color!,=Excellent=
NOT great for the FACE!,=Poor=
I really wanted this to work for me :-(,=Unsatisfactory=
Super bright,=VeryGood=
good product....excellent service!!!!,=Good=
wow.... 100% good investment,=Excellent=
They named this conditioner right,=Excellent=
Pain relief,=Excellent=
I don't like it,=Poor=
Damaged my hair!,=Unsatisfactory=
Switched from Aveeno,=Excellent=
Not good for thick curly hair,=Unsatisfactory=
:(,=Poor=
To greasy and doesn't work!!! (GUY REVIEW),=Poor=
It's good mascara,=Good=
Gets hot quickly,=VeryGood=
Waste of money,=Unsatisfactory=
Too fine,=Unsatisfactory=
"If you're ok with head/hair smelling like tar, seriously",=Poor=
"Don't be fooled by \Frequently Bought Together\""!""",=Poor=
It's just okay,=Good=
Nothing yet,=Unsatisfactory=
good moisturizer,=Excellent=
Nice color,=Good=
Definately a Wen girl!!,=Excellent=
Smells good but it doesn't last....,=Good=
freah clean smell: lasted for the duration,=VeryGood=
high color,=Good=
Is Dove always Dove?,=Poor=
"meh, product is ok",=Good=
Manly Scent,=VeryGood=
Vaseline Body Lotion,=Unsatisfactory=
Didn't notice any improvement,=Unsatisfactory=
Not worth it. Gross makeup.,=Unsatisfactory=
Jericho brand is better,=Unsatisfactory=
One-half of this product is awful!,=Poor=
Uncomfortable? Yes... but Worth It!,=VeryGood=
Just as nasty as you can expect,=Excellent=
Light & Non-Oily; Tones Down Redness Only Slightly,=Good=
"Very good protection, but",=Good=
The worst blush I've ever used,=Poor=
"Awful, and I think it's replacing Revlon's colorstay mineral makeup",=Unsatisfactory=
Amaaaazing :),=Excellent=
I don't mind The Smell,=Good=
Two sided mount mirror x5,=Excellent=
Good coverage but not all day,=Good=
Not for me!,=Poor=
Pretty!,=VeryGood=
"Not for frizzy hair or a gentle blow dry, very extreme",=Good=
d+,=Unsatisfactory=
Five Stars for Those in Need of Skin Repair. Two Stars for Those Already Invested in Their Skin. Part II.,=Good=
Feels great,=VeryGood=
its an ok eyeshdow,=Unsatisfactory=
NOT A HIT,=Poor=
"Finulite - The End to Cellulite, AM/PM Cellulite Cream (2 - 4 oz bottles)",=Poor=
Wow,=Excellent=
Are you kidding?,=Poor=
"Doesn't works, Not Natural!",=Poor=
Not too bad,=VeryGood=
"Dr. King's Natural Medicine Gout Symptom Formula,",=Poor=
One of the Best,=VeryGood=
Good stuff,=VeryGood=
Kerastase Reflection By Kerastase Chrom Thermique Thermo Radiance,=Unsatisfactory=
Just the label and bottle alone...,=Good=
Great brush,=Excellent=
Disappointment,=Poor=
Pretty good but not great,=Good=
I do not recommend,=Poor=
Obagi : C - Exfoliating Day lotion.,=Excellent=
"Got a synthetic brush, not natural bristle",=Poor=
gift,=Excellent=
... really doesnt do as it say but goes on nicely is about it and a good,=Good=
NAUTICA VOYAGE,=Good=
Great stuff!,=Excellent=
Definitely worth the money and offers Longevity and a very safe/fresh masculine scent.,=VeryGood=
Doesn't work for me,=Poor=
Hair Color Crayon,=VeryGood=
"It does wonders, BUT YOU HAVE TO USE IT CORRECTLY",=Excellent=
Good buy,=Good=
dryed out my face,=Poor=
I really liked it! Then it broke.,=Excellent=
too wet?,=Unsatisfactory=
Very heavy,=Unsatisfactory=
Pretty Good,=VeryGood=
Doesn't have a very Verbena smell,=Unsatisfactory=
My favorite ABH toner,=VeryGood=
Little goes a long way.,=Excellent=
will not buy again,=Unsatisfactory=
Burns and very expired!!,=Poor=
Works but not exciting,=VeryGood=
Home Health Roll-On Deodorant Herbal Scent -- 3 fl oz,=Good=
"Good spray, bad watertightness",=Unsatisfactory=
"Great Product, Requires Pro Equipment For Full Effect",=VeryGood=
Not bad,=Good=
Anise Little Scent,=VeryGood=
Great Base Coat,=VeryGood=
I like this stuff,=VeryGood=
Doesn't stay,=Good=
Amazing BUT ...,=Poor=
KEEP IT SIMPLE! Average Combination (slightly sensitive) Skin - PERFECT!!!!!!!!!,=Excellent=
Its ok,=Good=
not all natural and is a bit greasy,=Good=
Filmy,=Unsatisfactory=
I used to love this...,=Good=
didn't work,=Poor=
Good clips,=VeryGood=
BROKE ME OUT,=Poor=
x,=Poor=
Ok for what it is,=Good=
Cheap,=Poor=
Will NOT work for cystic acne..,=Unsatisfactory=
"Great product, poor applicator",=Good=
great product,=Excellent=
"Mine broke, but got a new one",=Good=
Overrated,=Poor=
It's ok...,=Good=
Awful,=Poor=
Great for long hair dogs,=Excellent=
Great for face and body for people with sensitive skin or eczema,=Excellent=
Very difficult to use,=Poor=
"Maybelline new york cover stick concealer, medium beige, medium",=VeryGood=
"The First Use Was OK, But...",=Unsatisfactory=
It's a Miracle!,=Excellent=
Great HAIR REVIVE,=VeryGood=
sheer makeup,=VeryGood=
awesome for girls first stylisg tool!,=Excellent=
No difference,=Unsatisfactory=
Didn't work for me,=Unsatisfactory=
"Lightweight, super-absorbent, soft & fluffy",=VeryGood=
Too much hype.,=Unsatisfactory=
Better than any cream or lotion I've ever tried.,=Excellent=
Two Stars,=Unsatisfactory=
"I love Reviva products, but this doesn't work for me at all.",=Unsatisfactory=
Fragrance Free is NOT FOR ME,=Unsatisfactory=
Great exfoliator,=Excellent=
It does what it says...removes frizz and ads volume,=Excellent=
Calling it straight,=Good=
Smells awful,=Poor=
Bad bottle?,=Poor=
Did not work for me at all,=Poor=
"Decent, but Color Issues",=Good=
Maybe it's me,=Unsatisfactory=
"Nice texture, but definitely not a \cocoa\"" smell""",=Good=
This homeopathic remedy helped me,=Excellent=
This only smells okay,=Good=
Stop working,=Unsatisfactory=
"I was skeptical, but these really DO seem to help!",=Excellent=
Nice brush kit,=Good=
A Primer in Time Saves Nine (Beauty Troubles),=Excellent=
Pungent Smell like Sour Breath,=Poor=
aweful odor - hated it,=Poor=
not for me,=Unsatisfactory=
Best hair drier,=Excellent=
The brush ruins it,=Poor=
Not all that,=Unsatisfactory=
CLEANER THAN CLEAN,=VeryGood=
great toner!,=Excellent=
"Its \okay\"". I have had better primers.""",=Good=
"If I was buying falsies, I'd sure hope they don't look like this!",=Poor=
not for long hair,=Unsatisfactory=
This is great!,=VeryGood=
Going Through the Motions,=Good=
"L'Oreal Paris Frost and Design Highlights, Caramel",=Unsatisfactory=
Just grind up your own oatmeal,=Unsatisfactory=
Good.,=VeryGood=
I Do Not Know as yet.,=Good=
Love etc- strong fragrance,=Unsatisfactory=
My Daughters hair is Purple!!!,=VeryGood=
Disappointed!,=Unsatisfactory=
good,=VeryGood=
I love this product.,=Excellent=
Gold face,=Unsatisfactory=
Love it,=Excellent=
Nice,=VeryGood=
There's a reason these are cheap,=Poor=
"Use sparingly, and not often!",=VeryGood=
Don't like it,=Unsatisfactory=
"For spa-like treatment, not sleep",=Good=
Not the Jean Nate of yesteryear,=Poor=
Does something,=Good=
Horrible,=Poor=
MEH,=Unsatisfactory=
"Great Serum, No Scent, Perfect for Men",=Excellent=
The fragrance was not as hoped,=Poor=
Eyes look more puffy,=Poor=
Best moisturizing cream around,=Excellent=
Obagi C Serum for Eyes,=Good=
Will make your skin darker,=Poor=
"nice color, seal broken",=VeryGood=
4 coats,=VeryGood=
Didn't work,=Poor=
strong but good product,=Good=
burt bees,=Good=
Better than Proactiv,=VeryGood=
=(,=Unsatisfactory=
Shocked at how fast it dries my hair!,=VeryGood=
ok,=Good=
Hmmmm,=Good=
Did't work for me,=Poor=
Does not work for me.,=Poor=
For dry hair,=VeryGood=
Not the greatest polishes,=Unsatisfactory=
Wonderful product! {upate regarding how oil is harvested},=Poor=
"Works, but nothing special",=VeryGood=
Doesn't provide great hold,=Good=
excellent,=Excellent=
Is not bad,=Good=
RE:  O.K,=Good=
Cheap construction,=Poor=
Horrible smell!,=Poor=
Not up to par,=Unsatisfactory=
Exact copy of cheaper cody sand and sable,=Unsatisfactory=
Not the product I ordered,=Poor=
the stamper is okay,=Good=
Unimpressed,=Unsatisfactory=
Tampered,=Unsatisfactory=
Shine?  Where's the shine?,=Unsatisfactory=
Good Product,=VeryGood=
Do not Buy!,=Poor=
Not a winner for me.,=Unsatisfactory=
Arsenic icky,=Poor=
Burt's Bees Acne Lotion,=Good=
Cute Mirror,=VeryGood=
No Hair Growth Upset Stomach,=Poor=
nice moisturizer,=Excellent=
don't really see any difference,=Good=
I like it,=VeryGood=
perfect for bleached platinum hair,=Excellent=
Rough on Clothes,=Unsatisfactory=
"Horrible, Horrible!!",=Poor=
Better than my old $10 hair dryer...,=Good=
The best cleanser in the world!,=Excellent=
Disappointed!,=Unsatisfactory=
Not As Good As Other Hot Oil.,=Good=
"Lame, lame lame",=Poor=
"Pleasant, but not that rejuvinating",=Good=
This does not smell like my other bottle,=Unsatisfactory=
not as good as expected,=Unsatisfactory=
YUCK,=Poor=
"Good soap, lathers well - rinses clean, mild scent",=VeryGood=
not worth the money,=Good=
Good Product,=VeryGood=
VERY moisturizing but leaves your hand oily for a while,=Excellent=
"Couldn't even keep it on my face for 5min, it smells so horrible",=Poor=
Bulky but very good,=VeryGood=
Great matte bronzer!,=VeryGood=
Don't waste your money!,=Poor=
"Not on my face, maybe my elbows?",=Unsatisfactory=
It's great because I live in a sunny climate and have ...,=Excellent=
"Do you suffer from keratosis pilaris (chicken skin)?  Great lotion, bad scent.",=Good=
Dermalogica Microfoliant,=Excellent=
very gentle,=VeryGood=
Disappointed,=Unsatisfactory=
"As good as proactive, without being as messy",=VeryGood=
I don't know why it got so many good reviews.,=Poor=
Use as a pet shampoo!,=Excellent=
Nice gift,=VeryGood=
Disapointed,=Unsatisfactory=
Does not work ab-so-lu-te-ly,=Unsatisfactory=
Results do not last,=Good=
dried up,=Good=
Great hold.,=VeryGood=
So glad I found this product!,=Excellent=
Exactly wanted I needed!!!!,=VeryGood=
Careful,=Unsatisfactory=
wrinkle exentuator,=Unsatisfactory=
Disappointed,=Poor=
Simply the best,=Excellent=
Fairly heavy night cream,=VeryGood=
I liked the cheaper one I had,=Good=
okay,=VeryGood=
Good for prevention but doesn't erase them,=Good=
It a no go,=Poor=
Pleasant smelling,=VeryGood=
AMAZING,=Excellent=
Works well.,=Excellent=
Cleans well nicely!,=Excellent=
"decreases frizz, increases manageablilty!",=VeryGood=
its whatever,=Good=
Works for me,=VeryGood=
Second skin,=Excellent=
Organic lotion,=Good=
Not a good idea,=Poor=
not so much,=Good=
Glo Minerals,=Good=
Similar to Joyful Heart - charity shower gel benefiting the joyful heart foundation,=Good=
Broke me out,=Poor=
CREME DE LA CREAM,=Excellent=
...,=Poor=
Fairly dry concealer,=Unsatisfactory=
Not my favorite,=Good=
SMELLS WONDERFUL,=Excellent=
Good product for the price,=VeryGood=
This brush sucks!,=Unsatisfactory=
Lovely!,=VeryGood=
Thank you to all the reviewers for suggesting this face wash,=Excellent=
Cleans well,=Excellent=
Great product for fine lines and dry patches....,=Excellent=
Smaller size,=Good=
maybelline new york ultra-brow brown powder,=VeryGood=
Waste of money,=Unsatisfactory=
VERY DISAPPOINTED,=Poor=
NOT AS GOOD AS ORIGINAL,=Unsatisfactory=
"Works well, as long as it stays together.",=Good=
Not worth your time or money,=Poor=
Pass it up,=Unsatisfactory=
So glad to find this on Amazon,=VeryGood=
A waste of time!,=Poor=
Curly top,=Excellent=
New Holy Grail Face Product!,=Excellent=
perfect for us,=Excellent=
Left a goopy film on my eyes,=Unsatisfactory=
Nothing Special,=Unsatisfactory=
I like this product very very much!,=VeryGood=
Daughter like them,=Good=
not good for my yorkie terrier,=Unsatisfactory=
Beware! causes milia like bumps on some skins,=Poor=
not my favorite scent,=Good=
not a treatment at all,=Poor=
use it all the time,=Excellent=
Obsessed,=Excellent=
Does not protect from heat!,=Poor=
Not as good as it sounds,=Unsatisfactory=
Works well,=Excellent=
Will use even though don't really like. Loved the one I had before,=Unsatisfactory=
We Shall See......,=VeryGood=
Love it!,=VeryGood=
Good but messy,=VeryGood=
Great Color,=Excellent=
Didn't do anything for me,=Unsatisfactory=
Terrible for fine hair!,=Poor=
Ehhhh,=Unsatisfactory=
Could be better,=Good=
My Favorite Cleanser,=Excellent=
Nice for oily skin,=VeryGood=
Horrible product,=Poor=
It's just glue but it works!,=Good=
Great product,=VeryGood=
May be fine for light breakouts; not for deeper problems,=Unsatisfactory=
ok,=Good=
"Only for the Fine Haired, Dry-Normal Shampooing Woman",=VeryGood=
My hair looked oily at the end of the day,=Good=
Useless,=Unsatisfactory=
Too dry,=Good=
Wintertime Fave!,=Excellent=
Not for me,=Unsatisfactory=
DIDN'T WORK ON MY HAIR,=Poor=
just okay,=Good=
Useless.,=Poor=
"OMG, it had been sitting on my shelf for months",=Poor=
MY KINKY CURLY CONDITIONER,=Good=
Doesn't work for me yet...,=VeryGood=
Great for my heat cap treament,=Excellent=
Vanilla Heaven,=Excellent=
Used to love it until I looked at the ingredients - contains Parabens in it,=Poor=
Dried out,=Unsatisfactory=
The brushes are of poor quality but dotting tools are perfect.,=Unsatisfactory=
The rating it deserves depends on your expectations,=Good=
Works great - horrible smell,=VeryGood=
Meh,=Unsatisfactory=
Works okay but too many harsh ingredients,=Unsatisfactory=
Acidic Smell,=Unsatisfactory=
"CHEAP PLASTIC, BREAKS EASILY.",=Unsatisfactory=
wrong reviews,=Poor=
Not Recommended,=Unsatisfactory=
Just not sure....,=Unsatisfactory=
not sure if it works completely for me,=Good=
Not for COPD,=Good=
Disappointing.,=Poor=
Not as good for me as expected,=Unsatisfactory=
No miracles here,=Unsatisfactory=
Weak Scent,=Poor=
mess up my face.... :-(,=Poor=
Overdrying,=Unsatisfactory=
Muguet Des Bois By Coty For Women. Cologne...,=Good=
Didn't work for me...,=Unsatisfactory=
another one bites the dust...,=Unsatisfactory=
Ideal,=Excellent=
Not what I should have bought,=Good=
will not come off.,=Poor=
Best,=Excellent=
ohkay oil,=Good=
ABC Good Morning America (recommended this),=Excellent=
Its ok,=VeryGood=
bottle is breaking,=Unsatisfactory=
Love love love,=Excellent=
Mixed,=Good=
"Extremely watery. Original Noxzema used to cool my skin, this doesn't. See photo.",=Unsatisfactory=
You get what you pay for!!,=Unsatisfactory=
Got this for my Birthday 4 years ago...,=VeryGood=
Makes my hair feel DRY,=Unsatisfactory=
HATE IT,=Poor=
great,=Excellent=
Too heavy and greasy for me,=Unsatisfactory=
Hair clip,=Unsatisfactory=
Soothes Chapped Hands Better Than Just About Anything Else,=VeryGood=
Not for coarse hair.,=Unsatisfactory=
No stars!  A major RIP-OFF!!!,=Poor=
"Tiny brush, this liner tends to clump up",=Poor=
Very Moisturizing,=VeryGood=
Great for summer,=VeryGood=
Worth the price,=Good=
Eh,=Unsatisfactory=
"Too light, one-color-doesn't match all",=Poor=
Color wasn't for me.,=Unsatisfactory=
Waste of money !,=Unsatisfactory=
This is a great product!!!,=Excellent=
Really Nice Light Leave in Conditioner,=Excellent=
Does Not Work on Hereditary Dark Circles,=Good=
What a huge disappointment!,=Poor=
Paler and more Aqua,=Good=
Creates a smooth appearance,=VeryGood=
Good Value~,=VeryGood=
not too sure about this - leaves itching on the shaved part of the face,=Unsatisfactory=
STRONG Stuff,=VeryGood=
creates pale face,=Unsatisfactory=
Terrible,=Poor=
Nice and light but possibly breaking me out,=Good=
Nice,=VeryGood=
Baby Belly Butter,=VeryGood=
Not very moisturizing in my opinion,=Good=
Good deal,=Unsatisfactory=
mascara,=Excellent=
"Organic Acne Treatment?  Yes, but not quite as effective as conventional systems",=Good=
Very Disappointed,=Poor=
BE CAREFUL WITH THIS PRODUCT - THIS IS NOT NEUTROGENA'S SPECIALTY - I'M PROOF,=Poor=
Good First Week...Then?,=Good=
So far nothing..but I've only added it to my conditioner not my hair dye.,=Good=
Dries and flakes,=Unsatisfactory=
Messy,=Unsatisfactory=
Well....,=Unsatisfactory=
perfect,=Excellent=
Really Bad,=Poor=
was okay.,=Good=
One Star,=Poor=
Hydrating and Refreshing,=VeryGood=
"So far, so good",=VeryGood=
Nice,=Good=
Ehhh,=Unsatisfactory=
Useless,=Poor=
"good for curing pimples, bad for sensitive skin",=Good=
This hair curler is absolutely wonderful!!!,=Excellent=
margarine,=VeryGood=
ARE YOU 20 yrs. old?  If so this is for YOU !!!!!,=Poor=
Love that clean tingle on my face!,=Excellent=
No miracle; also it STINGS!,=Good=
Doesn't last long,=Good=
Chalk,=Poor=
Doesn't do what I had bought it for.,=Good=
Your exotic scent will be noticed,=VeryGood=
does not work on extremely oily skin,=Poor=
the best,=Excellent=
how can anyone like this???,=Poor=
WORKS,=Excellent=
Don't understand the hype about this primer,=Poor=
Love Essie!,=Excellent=
DO NOT ORDER! They Got Me Too!!!!!!!!!  ARGGH!,=Poor=
Good stuff,=Excellent=
No big deal,=Unsatisfactory=
Only conditioner I will use now,=Excellent=
straight up AGES you. :(,=Poor=
Average Shampoo - Excellent Price,=VeryGood=
Not so good.,=Unsatisfactory=
cucumber for sensative skin,=VeryGood=
Wonderful! Give yourself a Facial,=Excellent=
Too green,=Unsatisfactory=
Two Stars,=Unsatisfactory=
Stings a bit,=Unsatisfactory=
very dissapointed,=Unsatisfactory=
GREAT!!(:,=Excellent=
"Effective, But Scent (Although Pleasant) Is A Bit Too Pronounced For My Personal Taste",=Good=
Doesn't work,=Poor=
Love the color but it's kind of dry,=Good=
Love it!,=Excellent=
Cause rash....,=Poor=
I really like this product! Love it!!,=Excellent=
"All the benefits of emu oil, only more expensive",=VeryGood=
So far so good,=Excellent=
Worth every penny,=Excellent=
soft,=VeryGood=
wonderful smell,=VeryGood=
"Buy the cheaper ones, same thing",=Poor=
Nothing special,=Good=
Hard to use,=Good=
Bad product,=Poor=
Does not last,=Unsatisfactory=
Leaves behind residue,=Unsatisfactory=
Nice!,=Excellent=
"Heavy, not as hot as more expensive, cheap",=VeryGood=
I am SO EXCITED!,=Excellent=
"great color fast, minimal streaking, minimal odor",=VeryGood=
Love,=VeryGood=
SO TINY,=Good=
"Cheap product, contains formaldehyde...",=Poor=
Thanks,=VeryGood=
So awful and smelly!,=Poor=
I've been using this since I was a teen!,=Excellent=
Don't recommend at all.,=Unsatisfactory=
Good product,=VeryGood=
"sex in the city",=VeryGood=
DON'T WASTE YOUR TIME,=Poor=
M2 Skin Care HP Skin Refinish 20% 50 ml.,=Unsatisfactory=
Do not use!,=Poor=
"Used to be the best, but the formula has changed in the past year",=Good=
Love this Leave-In!,=Excellent=
No effect after 2 months,=Poor=
"Good product, but expensive for such a small bottle! Go with the masque instead!",=VeryGood=
Worth buying,=Good=
Has worked really well for me!,=VeryGood=
Hard to apply evenly,=Good=
It's Dyed,=Unsatisfactory=
Side effect of nausea made it impossible for me to continue with product,=Poor=
Awful,=Poor=
I don't understand the hoopla around this product,=Unsatisfactory=
Elite Serum,=Poor=
Not to impressed......,=Unsatisfactory=
I'm a lotion addict -- 4.5*,=VeryGood=
Not good,=Poor=
So/So,=Good=
Gorgeous Blush and AUTHENTIC!,=Excellent=
Savior from tangled AA hair,=Excellent=
great man shampoo...,=Excellent=
This made me very itchy,=Poor=
Not Quite Nag Champa,=Unsatisfactory=
Goes on Strong - Dissipates,=Good=
Made my skin dry,=Poor=
Dimethicone Face,=Unsatisfactory=
"I do like it, dries fast",=VeryGood=
Contains propelyn glycol,=Poor=
"Doesn't cause breakouts, but doesn't moisturize enough either",=VeryGood=
ehhh,=VeryGood=
Not good,=Unsatisfactory=
"I don't know why, I just like it!",=VeryGood=
quality went waaaaay down,=Unsatisfactory=
ITS CRAP PASSING FOR SALON QUALITY,=Poor=
Awesome,=VeryGood=
One Star,=Poor=
Soothing protection!,=Excellent=
introduction to Deva,=VeryGood=
A little disappointed.,=Unsatisfactory=
Really Practical,=VeryGood=
good curling leave-in,=VeryGood=
Didn't work for me,=Unsatisfactory=
Not for thick & dry long hair that needs detangling,=Unsatisfactory=
Not what it was - Check the names to be sure what you're getting,=Unsatisfactory=
My daughter is addicted to these.,=Excellent=
yuck yuck yuck.. does not wash off,=Poor=
I will never use another,=Excellent=
"Thoroughly Clean, most definitely!",=VeryGood=
HATE THE SMELL!!,=Poor=
Revived Curls,=VeryGood=
Didn't do anything,=Poor=
Not good.,=Unsatisfactory=
It works,=Excellent=
rev.,=Poor=
What you do get is fine,=Unsatisfactory=
Cheaper than the name brands but works the same!~,=Excellent=
Too heavy/greasy,=Unsatisfactory=
Nice Clippers,=VeryGood=
I didn't honestly believe nails could dry this fast!,=VeryGood=
Love the Product,=Excellent=
"Nice brush, to expensive",=VeryGood=
Quality Has Decreased,=Poor=
Fun,=Good=
Can do without,=Good=
It's okay.,=Good=
not too fond of it,=Unsatisfactory=
It really does stay,=Excellent=
allergic,=Poor=
Smooth and Straight to ... Frizzy Kinks?,=Unsatisfactory=
What's all the hype?,=Good=
Great scent.,=VeryGood=
Great Curling Iron,=Excellent=
For curly hair!,=VeryGood=
Eucerin Lotion,=Unsatisfactory=
ehh,=Poor=
Makes a great base,=Excellent=
Doesn't look as natural as I had hoped,=Good=
I feel soft,=VeryGood=
great product,=VeryGood=
"Good, But a Bit Drying",=Good=
Skip this!,=Poor=
Just ok,=Good=
Shiney...yet greasy.,=Good=
Gloppy and thick,=Unsatisfactory=
legendary universal household cleaner from 1960's....,=Excellent=
love this soap,=VeryGood=
"It's soap, isn't it?",=Good=
WORST!,=Poor=
Amazing Stuff!,=Excellent=
Mediocre product,=Good=
Average!!,=Good=
Ok for short hair,=Good=
Not my favorite...,=Unsatisfactory=
Clinique its better,=VeryGood=
Simply awesome.,=Excellent=
over chrged,=Poor=
work pretty well,=VeryGood=
too heavy for us,=Good=
Not for me,=Unsatisfactory=
Kit has no expiration date all sunblocks require exp date per fda,=Unsatisfactory=
This stuff works very well. I have used this ...,=VeryGood=
Ehh it's ok.,=Good=
peeled off!!!,=Poor=
I wish it worked for me,=Unsatisfactory=
I use everyday,=Excellent=
"Falls apart, can't use on sensitive skin",=Unsatisfactory=
Contains Toxic Parabens in the ingredient list....,=Unsatisfactory=
Meh,=Unsatisfactory=
Too sparkly,=Unsatisfactory=
4 different sizes,=Good=
Bare Minerals for life!,=Excellent=
Contains other ingredients,=Unsatisfactory=
Great  Idea & Design - But Somewhat Fragile,=VeryGood=
Not a fan,=Unsatisfactory=
greasy....,=Unsatisfactory=
Useless,=Poor=
Very oily and greasy product and does not work,=Poor=
Awkwardly Small,=Poor=
"Great idea, poor product",=Unsatisfactory=
less loose hair in my bathtub,=VeryGood=
best mascara ever,=Excellent=
Have not noticed anything,=Unsatisfactory=
May Not Be the Best Choice if you Have Acne-Prone Skin,=Good=
"Works for whiteheads, not nodular acne",=Good=
Great starter kit saves time when packing for vacations,=Excellent=
Secret Brightener,=Excellent=
I wanted it to work so much...but it didn't,=Poor=
A TINT IS NOT A STAIN!,=Poor=
dont like the product at all ...waste of money,=Unsatisfactory=
It looks like vaseline!,=Unsatisfactory=
"clumps, hurts sensitive eyes",=Unsatisfactory=
good makeup remover!,=Good=
Love,=Excellent=
Pluses and Minuses,=Good=
Liked It At First But Then Turned Dry -  Has Alcohol and Perfume,=Unsatisfactory=
"Foamy & nice smelling, but unremarkable",=Good=
Love it,=Excellent=
Used,=Good=
One Star,=Poor=
DO NOT BUY THIS!!!!  IT WILL BREAK WITHIN 1 MONTH OF USE,=Poor=
Another good product,=VeryGood=
so damn red!!!,=Excellent=
Not so much for fair skin,=Good=
Super sharp.,=Excellent=
"Color matches, but crumbles off quickly",=Unsatisfactory=
DONT BUY ITEM FROM CRAPPY You2Be COMPANY!!!,=Poor=
It's good,=Good=
This oil is a life saver!!,=Excellent=
Look elsewhere....,=Poor=
"Makes Me Feel Awake, Causes Zits Doesn't Remove Them",=Poor=
It really works.,=Excellent=
Garbage,=Poor=
Worst product ever. Irritates NOT sensitive skin.,=Poor=
10% Glycolic Acid value,=Excellent=
save your money,=Poor=
Difficult and Dirty,=Poor=
A Waste of Money.,=Unsatisfactory=
Mineral Oil is the number two ingredient,=Good=
Flakes off my nails and doesn't appear to help with peeling,=Unsatisfactory=
Caked all over my eyelid,=Poor=
Robanda Intensive Moisturizer Cream with Advanced Retinol Vitamin A,=VeryGood=
Who cares If i can't read the label!,=VeryGood=
Nothing out There as effective and better! Give it time!,=Excellent=
Keeps my hair frizz-free!,=Excellent=
Not A Worthy Choice,=Poor=
do not waste your money,=Poor=
Use this moisturizer if you want to scare little kids!,=Poor=
smells good,=VeryGood=
Its ok,=Good=
Good exfoiliator,=Excellent=
Burn Baby Burn,=Poor=
Good Stuff!,=VeryGood=
Same product in new package,=Good=
Meh,=Good=
Horrible.,=Poor=
Very nice,=Excellent=
IF I could give it NO stars I would! - USE CAUTION-,=Poor=
puke :D,=Unsatisfactory=
Serious strength.  Very good results.,=VeryGood=
Not exactly what I expected,=Good=
Beware if you have a sensitive scalp,=Good=
wahhhhh fail for me,=Poor=
Great for greasy hair but not the best smell,=VeryGood=
Much darker than it appears on the box,=Unsatisfactory=
Original!!!!!,=Excellent=
Fits but keeps slipping off,=Good=
Smells Cheap!!!!,=Unsatisfactory=
NOT GREAT FOR CLEANING GEL NAIL BRUSHES!,=Poor=
Pretty good,=VeryGood=
Yummy,=VeryGood=
"Its natural, but...",=Poor=
Didn't work out so great,=Unsatisfactory=
Feel the vibrations,=VeryGood=
Great mascara,=VeryGood=
I was expecting something better,=Good=
"Meh, its water...",=VeryGood=
Dont know why Im the odd one out,=Poor=
Not that impressed,=Unsatisfactory=
"OK, but not worth the price",=Unsatisfactory=
Great hairbrush,=VeryGood=
Its Alright,=Good=
Not a fan,=Unsatisfactory=
Bio Ionic is very good indeed but debatable on the One Pass...,=VeryGood=
Love,=Excellent=
Won't buy again,=Poor=
Neutral...,=Good=
THE BEST POWDER I HAVE EVER USED!!!!,=Excellent=
greasy.....,=Unsatisfactory=
No more brittle hair,=VeryGood=
High quality and divine.,=Excellent=
Little disappointed...,=Unsatisfactory=
not effective,=Unsatisfactory=
OK!!,=Good=
Made me Break Out,=Poor=
just okay,=Unsatisfactory=
Nice microderm system (Philosophy dupe!),=VeryGood=
Horrible!!,=Poor=
Five Stars,=Excellent=
Not too sure what the hype is about?,=Good=
"SORRY, NOT FEELING ANY DIFFERENCE",=Unsatisfactory=
"Dermatologists say its a good cleanser, but it was not gentle enough for my sensitive skin",=VeryGood=
Beauty blender,=Good=
"For very, very fine lines only",=Good=
This ended up drying my skin,=Unsatisfactory=
Contains parabens and other chemical banned in Europe,=Unsatisfactory=
I like the creme version better,=Good=
Smells like skunk spray,=Poor=
It's okay,=VeryGood=
Way too harsh for my skin,=Unsatisfactory=
"Aeh, bare escentuals is better.",=Unsatisfactory=
Good mask,=VeryGood=
Not what I was hoping,=Good=
Palty Milk Tea Brown,=Unsatisfactory=
BAD,=Unsatisfactory=
"Really intense, fake-y smell",=Good=
Flakes like crazy,=Poor=
Not what I expected.,=Good=
Did not remove black henna,=Unsatisfactory=
Very sheer,=Good=
Nice for the Price,=Good=
No power,=Unsatisfactory=
Reminds me of my Mamaw Ella,=Excellent=
Not for me,=Unsatisfactory=
It works and is good for day wear,=VeryGood=
at least its cheap...,=Unsatisfactory=
Great Classic Blush for any skintone.,=Excellent=
Is it doing anything?,=Unsatisfactory=
Thayer - Witch Hazel Toner,=Excellent=
It's long lasting.,=Good=
"EYE CREAMS ARE ALL THE SAME, THIS ONE IS A BIT BETTER",=VeryGood=
Smells great,=VeryGood=
mild,=Good=
No curls :(,=Unsatisfactory=
"Smells AMAZING,",=Excellent=
"Effective sunscreen, but cosmetically flawed",=Good=
Not so much,=Poor=
Not sure of I like it,=Unsatisfactory=
EXCELLENT!,=VeryGood=
"All-natural, non-irritating, moisture-rich conditioner",=Excellent=
very nice,=Excellent=
"Seems to diminish the appearance of scars and the effects of aging, slowly but surely",=VeryGood=
Nice Headbands,=VeryGood=
"Red, Red rash ...",=Unsati
Download .txt
gitextract_pewj7ny_/

├── .gitignore
├── README.md
├── classifier.py
├── data/
│   ├── MP2_2022_dev.csv
│   ├── MP2_2022_train.csv
│   ├── README.md
│   ├── imdb_reviews_test.csv
│   └── imdb_reviews_train.csv
├── interact.py
├── requirements.txt
├── test.py
├── tokenizer.py
├── training.py
└── utils.py
Download .txt
SYMBOL INDEX (36 symbols across 6 files)

FILE: classifier.py
  class Classifier (line 21) | class Classifier(pl.LightningModule):
    class DataModule (line 28) | class DataModule(pl.LightningDataModule):
      method __init__ (line 29) | def __init__(self, classifier_instance):
      method read_csv (line 40) | def read_csv(self, path: str) -> list:
      method train_dataloader (line 53) | def train_dataloader(self) -> DataLoader:
      method val_dataloader (line 64) | def val_dataloader(self) -> DataLoader:
      method test_dataloader (line 74) | def test_dataloader(self) -> DataLoader:
    method __init__ (line 84) | def __init__(self, hparams: Namespace) -> None:
    method __build_model (line 104) | def __build_model(self) -> None:
    method __build_loss (line 125) | def __build_loss(self):
    method unfreeze_encoder (line 129) | def unfreeze_encoder(self) -> None:
    method freeze_encoder (line 137) | def freeze_encoder(self) -> None:
    method predict (line 143) | def predict(self, sample: dict) -> dict:
    method forward (line 165) | def forward(self, tokens, lengths):
    method loss (line 192) | def loss(self, predictions: dict, targets: dict) -> torch.tensor:
    method prepare_sample (line 204) | def prepare_sample(self, sample: list, prepare_target: bool = True) ->...
    method training_step (line 228) | def training_step(self, batch: tuple, batch_nb: int, *args, **kwargs) ...
    method validation_step (line 251) | def validation_step(self, batch: tuple, batch_nb: int, *args, **kwargs...
    method validation_end (line 287) | def validation_end(self, outputs: list) -> dict:
    method configure_optimizers (line 321) | def configure_optimizers(self):
    method on_epoch_end (line 333) | def on_epoch_end(self):
    method add_model_specific_args (line 339) | def add_model_specific_args(cls, parser: ArgumentParser) -> ArgumentPa...

FILE: interact.py
  function load_model_from_experiment (line 12) | def load_model_from_experiment(experiment_folder: str):

FILE: test.py
  function load_model_from_experiment (line 16) | def load_model_from_experiment(experiment_folder: str):

FILE: tokenizer.py
  class Tokenizer (line 10) | class Tokenizer(TextEncoder):
    method __init__ (line 15) | def __init__(self, pretrained_model) -> None:
    method unk_index (line 21) | def unk_index(self) -> int:
    method bos_index (line 26) | def bos_index(self) -> int:
    method eos_index (line 31) | def eos_index(self) -> int:
    method padding_index (line 36) | def padding_index(self) -> int:
    method vocab (line 41) | def vocab(self) -> list:
    method vocab_size (line 49) | def vocab_size(self) -> int:
    method encode (line 56) | def encode(self, sequence: str) -> torch.Tensor:
    method batch_encode (line 65) | def batch_encode(self, sentences: list) -> (torch.Tensor, torch.Tensor):

FILE: training.py
  function main (line 15) | def main(hparams) -> None:

FILE: utils.py
  function mask_fill (line 7) | def mask_fill(
Condensed preview — 14 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (397K chars).
[
  {
    "path": ".gitignore",
    "chars": 1735,
    "preview": "experiments\n*DS_Store\n\n# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n#"
  },
  {
    "path": "README.md",
    "chars": 3517,
    "preview": "# Minimalist Implementation of a BERT Sentence Classifier\n\nThis repo is a minimalist implementation of a BERT Sentence C"
  },
  {
    "path": "classifier.py",
    "chars": 13891,
    "preview": "# -*- coding: utf-8 -*-\nimport logging as log\nfrom argparse import ArgumentParser, Namespace\nfrom collections import Ord"
  },
  {
    "path": "data/MP2_2022_dev.csv",
    "chars": 70243,
    "preview": "text,label\nWorks shockingly well,=Excellent=\nDifficulty staying in,=VeryGood=\nFavorite item,=Excellent=\nThese Roller Are"
  },
  {
    "path": "data/MP2_2022_train.csv",
    "chars": 280589,
    "preview": "text,label\ngood variety of colors,=Good=\nAlmost Runny and the Scent is So-So,=VeryGood=\ntoo artificial for me,=Poor=\nFix"
  },
  {
    "path": "data/README.md",
    "chars": 130,
    "preview": "The code is made to work with csv's with a column label and a column text.\n\nIf you respect this structure, the code shou"
  },
  {
    "path": "interact.py",
    "chars": 1702,
    "preview": "\"\"\"\nRuns a script to interact with a model using the shell.\n\"\"\"\nimport os\nfrom argparse import ArgumentParser, Namespace"
  },
  {
    "path": "requirements.txt",
    "chars": 130,
    "preview": "pandas==1.1.1\ntensorboard==2.2.0\ntorch==1.6.0\ntransformers==3.1.0\npytorch-lightning==0.9.0\npytorch-nlp==0.5.0\nscikit-lea"
  },
  {
    "path": "test.py",
    "chars": 2282,
    "preview": "\"\"\"\nTests model.\n\"\"\"\nimport os\nimport json\nfrom argparse import ArgumentParser, Namespace\n\nimport pandas as pd\nimport ya"
  },
  {
    "path": "tokenizer.py",
    "chars": 2590,
    "preview": "# -*- coding: utf-8 -*-\nimport torch\nfrom transformers import AutoTokenizer\n\nfrom torchnlp.encoders import Encoder\nfrom "
  },
  {
    "path": "training.py",
    "chars": 4868,
    "preview": "\"\"\"\nRuns a model on a single node across N-gpus.\n\"\"\"\nimport argparse\nimport os\nfrom datetime import datetime\n\nfrom class"
  },
  {
    "path": "utils.py",
    "chars": 695,
    "preview": "# -*- coding: utf-8 -*-\nfrom datetime import datetime\n\nimport torch\n\n\ndef mask_fill(\n    fill_value: float,\n    tokens: "
  }
]

// ... and 2 more files (download for full content)

About this extraction

This page contains the full source code of the ricardorei/lightning-text-classification GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 14 files (42.2 MB), approximately 103.6k tokens, and a symbol index with 36 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!