Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/imgcook/pipcook-plugin-mnist-data-collector
- Owner: imgcook
- License: apache-2.0
- Created: 2020-08-12T12:01:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T16:51:46.000Z (over 4 years ago)
- Last Synced: 2024-08-02T19:01:33.806Z (4 months ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-imgcook - imgcook/pipcook-plugin-mnist-data-collector
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
}
},
```