-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51a44ae
commit e9888c2
Showing
1 changed file
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
# Product_Review_Keras_Model | ||
### Product_Review_Keras_Model | ||
### Install Tensorflow == 1.2.0 | ||
#### IMDB - review | ||
##### Description: | ||
##### Large Movie Review Dataset. This is a dataset for binary sentiment classification containing substantially more data than previous benchmark datasets. We provide a set of 25,000 highly polar movie reviews for training, and 25,000 for testing. There is additional unlabeled data for use as well. | ||
|
||
##### Homepage: http://ai.stanford.edu/~amaas/data/sentiment/ | ||
##### Source code: tfds.text.imdb.IMDBReviews | ||
##### Versions:1.0.0 (default): New split API (https://tensorflow.org/datasets/splits) | ||
##### Download size: 80.23 MiB | ||
##### Dataset size: Unknown size | ||
##### Auto-cached (documentation): No | ||
##### Splits: | ||
##### Split Examples: 'test' 25,000, 'train' 25,000, 'unsupervised' 50,000, Supervised keys (See as_supervised doc): ('text', 'label') | ||
###### import tensorflow_datasets as tfds | ||
|
||
###### ds = tfds.load('imdb_reviews', split='train') | ||
###### for ex in ds.take(4): | ||
###### print(ex) |