-
Notifications
You must be signed in to change notification settings - Fork 442
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
Showing
20 changed files
with
1,036 additions
and
8 deletions.
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 |
---|---|---|
@@ -0,0 +1,158 @@ | ||
/** | ||
* The data and data script is modified from TensorFlow.js's official repo. | ||
* Checkout TensorFlow.js's official tutorial for more information: https://js.tensorflow.org/tutorials/mnist.html | ||
*/ | ||
|
||
const IMAGE_SIZE = 784; | ||
const NUM_CLASSES = 10; | ||
const NUM_DATASET_ELEMENTS = 65000; | ||
|
||
const TRAIN_TEST_RATIO = 5 / 6; | ||
|
||
const NUM_TRAIN_ELEMENTS = Math.floor( TRAIN_TEST_RATIO * NUM_DATASET_ELEMENTS ); | ||
const NUM_TEST_ELEMENTS = NUM_DATASET_ELEMENTS - NUM_TRAIN_ELEMENTS; | ||
|
||
const MNIST_IMAGES_SPRITE_PATH = | ||
'../../assets/data/training/mnist_images.png'; | ||
const MNIST_LABELS_PATH = | ||
'../../assets/data/training/mnist_labels_uint8'; | ||
|
||
class MnistData { | ||
|
||
constructor() { | ||
|
||
this.shuffledTrainIndex = 0; | ||
this.shuffledTestIndex = 0; | ||
|
||
} | ||
|
||
async load() { | ||
|
||
const img = new Image(); | ||
const canvas = document.createElement( 'canvas' ); | ||
const ctx = canvas.getContext( '2d' ); | ||
const imgRequest = new Promise( ( resolve, reject ) => { | ||
|
||
img.crossOrigin = ''; | ||
img.onload = () => { | ||
|
||
img.width = img.naturalWidth; | ||
img.height = img.naturalHeight; | ||
|
||
const datasetBytesBuffer = | ||
new ArrayBuffer( NUM_DATASET_ELEMENTS * IMAGE_SIZE * 4 ); | ||
|
||
const chunkSize = 5000; | ||
canvas.width = img.width; | ||
canvas.height = chunkSize; | ||
|
||
for ( let i = 0; i < NUM_DATASET_ELEMENTS / chunkSize; i ++ ) { | ||
|
||
const datasetBytesView = new Float32Array( | ||
|
||
datasetBytesBuffer, i * IMAGE_SIZE * chunkSize * 4, | ||
IMAGE_SIZE * chunkSize | ||
|
||
); | ||
|
||
ctx.drawImage( | ||
|
||
img, 0, i * chunkSize, img.width, chunkSize, 0, 0, img.width, | ||
chunkSize | ||
); | ||
|
||
const imageData = ctx.getImageData( 0, 0, canvas.width, canvas.height ); | ||
|
||
for ( let j = 0; j < imageData.data.length / 4; j ++ ) { | ||
|
||
datasetBytesView[ j ] = imageData.data[ j * 4 ] / 255; | ||
|
||
} | ||
|
||
} | ||
|
||
this.datasetImages = new Float32Array( datasetBytesBuffer ); | ||
|
||
resolve(); | ||
|
||
}; | ||
|
||
img.src = MNIST_IMAGES_SPRITE_PATH; | ||
|
||
} ); | ||
|
||
const labelsRequest = fetch( MNIST_LABELS_PATH ); | ||
const [ imgResponse, labelsResponse ] = | ||
await Promise.all( [ imgRequest, labelsRequest ] ); | ||
|
||
this.datasetLabels = new Uint8Array( await labelsResponse.arrayBuffer() ); | ||
|
||
this.trainIndices = tf.util.createShuffledIndices( NUM_TRAIN_ELEMENTS ); | ||
this.testIndices = tf.util.createShuffledIndices( NUM_TEST_ELEMENTS ); | ||
|
||
this.trainImages = | ||
this.datasetImages.slice( 0, IMAGE_SIZE * NUM_TRAIN_ELEMENTS ); | ||
this.testImages = this.datasetImages.slice( IMAGE_SIZE * NUM_TRAIN_ELEMENTS ); | ||
this.trainLabels = | ||
this.datasetLabels.slice( 0, NUM_CLASSES * NUM_TRAIN_ELEMENTS ); | ||
this.testLabels = | ||
this.datasetLabels.slice( NUM_CLASSES * NUM_TRAIN_ELEMENTS ); | ||
|
||
} | ||
|
||
nextTrainBatch( batchSize ) { | ||
|
||
return this.nextBatch( | ||
|
||
batchSize, [ this.trainImages, this.trainLabels ], () => { | ||
|
||
this.shuffledTrainIndex = | ||
( this.shuffledTrainIndex + 1 ) % this.trainIndices.length; | ||
return this.trainIndices[ this.shuffledTrainIndex ]; | ||
|
||
} | ||
|
||
); | ||
|
||
} | ||
|
||
nextTestBatch( batchSize ) { | ||
|
||
return this.nextBatch( batchSize, [ this.testImages, this.testLabels ], () => { | ||
|
||
this.shuffledTestIndex = | ||
( this.shuffledTestIndex + 1 ) % this.testIndices.length; | ||
|
||
return this.testIndices[ this.shuffledTestIndex ]; | ||
|
||
} ); | ||
|
||
} | ||
|
||
nextBatch( batchSize, data, index ) { | ||
|
||
const batchImagesArray = new Float32Array( batchSize * IMAGE_SIZE ); | ||
const batchLabelsArray = new Uint8Array( batchSize * NUM_CLASSES ); | ||
|
||
for ( let i = 0; i < batchSize; i ++ ) { | ||
|
||
const idx = index(); | ||
|
||
const image = | ||
data[ 0 ].slice( idx * IMAGE_SIZE, idx * IMAGE_SIZE + IMAGE_SIZE ); | ||
batchImagesArray.set( image, i * IMAGE_SIZE ); | ||
|
||
const label = | ||
data[ 1 ].slice( idx * NUM_CLASSES, idx * NUM_CLASSES + NUM_CLASSES ); | ||
batchLabelsArray.set( label, i * NUM_CLASSES ); | ||
|
||
} | ||
|
||
const xs = tf.tensor2d( batchImagesArray, [ batchSize, IMAGE_SIZE ] ); | ||
const labels = tf.tensor2d( batchLabelsArray, [ batchSize, NUM_CLASSES ] ); | ||
|
||
return { xs, labels }; | ||
|
||
} | ||
|
||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.hint { | ||
width: 100%; | ||
text-align: center; | ||
color: #D6FDFF; | ||
margin-top: 30px; | ||
margin-bottom: 15px; | ||
font-size: 20px; | ||
clear: both; | ||
} | ||
|
||
.panel-item { | ||
height: 40px; | ||
line-height: 40px; | ||
} | ||
|
||
.panel-item > label { | ||
font-weight: normal; | ||
} | ||
|
||
.panel-item > button { | ||
width: 80px; | ||
text-align: center; | ||
padding: 0; | ||
background-color: #244E5F; | ||
color: #D6FDFF; | ||
} | ||
|
||
.panel-item > button:hover { | ||
background-color: #548CA9; | ||
} | ||
|
||
.item-label { | ||
width: 150px; | ||
display: inline-block; | ||
color: #D6FDFF; | ||
font-size: 18px; | ||
padding-left: 30px; | ||
} | ||
|
||
.panel-item > span { | ||
color: #D6FDFF; | ||
font-size: 18px; | ||
} | ||
|
||
#selector > main > div { | ||
width: 24%; | ||
float: left; | ||
padding: 10px; | ||
box-sizing: border-box; | ||
position: relative; | ||
} |
Oops, something went wrong.