Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 706c2e1

Browse files
author
phani.thontepu
committed
notbooks written
1 parent 48764f6 commit 706c2e1

6 files changed

+1568
-5
lines changed

‎src/Boston_housing_price_regression_dataset_keras_dataset.ipynb‎

Lines changed: 490 additions & 2 deletions
Large diffs are not rendered by default.

‎src/CIFAR10_small_image_classification_keras_dataset.ipynb‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
" x_test = x_test.transpose(0, 2, 3, 1)\n",
6464
"\n",
6565
" return (x_train, y_train), (x_test, y_test)\n",
66+
"```\n",
6667
"## Regarding Dataset\n",
6768
"cifar10(Canadian Institute For Advanced Research) is dataset of 10 objectst namely\n",
6869
"\n",
@@ -450,7 +451,9 @@
450451
{
451452
"cell_type": "code",
452453
"execution_count": 10,
453-
"metadata": {},
454+
"metadata": {
455+
"scrolled": true
456+
},
454457
"outputs": [
455458
{
456459
"name": "stdout",
@@ -624,7 +627,7 @@
624627
"name": "python",
625628
"nbconvert_exporter": "python",
626629
"pygments_lexer": "ipython3",
627-
"version": "3.6.7"
630+
"version": "3.6.5"
628631
}
629632
},
630633
"nbformat": 4,

‎src/IMDB_Movie_reviews_sentiment_classification_keras_dataset.ipynb‎

Lines changed: 593 additions & 0 deletions
Large diffs are not rendered by default.

‎src/IMDB_Movie_reviews_sentiment_classification_keras_dataset.py‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3+
# Imports
34
import numpy as np
45
import pandas as pd
56
import matplotlib.pyplot as plt

‎src/Reuters_newswire_topics_classification_keras_dataset.ipynb‎

Lines changed: 478 additions & 0 deletions
Large diffs are not rendered by default.

‎src/Reuters_newswire_topics_classification_keras_dataset.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from keras.datasets import reuters
1111
(x_train, y_train), (x_test, y_test) = reuters.load_data(path="reuters.npz",num_words=10000,skip_top=0,maxlen=None,test_split=0.2,seed=113,start_char=1,oov_char=2,index_from=3)
1212

13-
#Understanding the data
13+
#Understanding the data
1414
print("The number of training samples",len(x_train))
1515
print("The number of testing samples",len(x_test))
1616
print("The shape of training samples array",np.shape(x_train))

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /