Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/imgcook/pipcook-plugin-mnist-data-collector

Pipcook plugin for mnist data collection.
https://github.com/imgcook/pipcook-plugin-mnist-data-collector

Last synced: 3 days ago
JSON representation

Pipcook plugin for mnist data collection.

Awesome Lists containing this project

README

        

# @pipcook/plugins-mnist-data-collect

### Description

This plugin is used to collect MNIST data specifically. For more inforamtion about MNIST, please refer to [here](http://yann.lecun.com/exdb/mnist/).
You can just specify how many samples of MNIST data you would like to collect and we will do the rest for you in this plugin.

### Required Parameters

| Parameter | Type | Description |
|:----------|:-----|:------------|
|trainCount|number|how many train samples to collect|
|testCount|number|how many test samples to collect|

### Optional Parameters

| Parameter | Type | Default Value | Description |
|:----------|:-----|:------|:-----|

### Example
```json
"dataCollect": {
"package": "@pipcook/plugins-mnist-data-collect",
"params": {
"trainCount": 8000,
"testCount": 2000
}
},
```