Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harvic3/sspe-cli-web
CLI web interface for sspe-project
https://github.com/harvic3/sspe-cli-web
Last synced: about 1 month ago
JSON representation
CLI web interface for sspe-project
- Host: GitHub
- URL: https://github.com/harvic3/sspe-cli-web
- Owner: harvic3
- Created: 2019-08-04T01:36:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T04:27:07.000Z (over 1 year ago)
- Last Synced: 2023-03-05T21:07:39.820Z (over 1 year ago)
- Language: Vue
- Homepage: https://sspengine.now.sh/
- Size: 1.17 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SSPE
> CLI Web application to process text files with numbers in seven-segment format in three lines.
> You can see this in Go to app
```console
$ sspe showme
executing with EXAMPLE file... ✏️
File data:
_ _ _ _ _ _ _ _ _
| | |_| | |_| |_| |_ |_| |_| |_| | |_|
| | |_| | | | _| |_| | |_| | |String number:
718794589819
```## Environment
> This application was made in VueJs framework.
## Installation
- Clone the repository
```console
npm install
``````console
npm run serve
```## Machine learning (is experimental)
> Use a neural network (LSTM) to process the text files and throw a string with the result equivalent to the number contained in seven-segment format within the file.
> With neural network you can process files with the last training done.
## Usage
- Get help
```console
sspe hi
```- Run process with example file
```console
sspe showme
```- Create a file with seven-segments format
```console
sspe create --name theFileName --number 654123
```- List the created files
```console
sspe list
```- Select a file of list for process
```console
sspe select --name Foo.dat
```- Add data for train the neural network
```console
sspe ml --add 654123 OR sspe m --add auto
```- Select a file of list for process with Neural network. File of list from 'sspe list'
```console
sspe ml --path Foo.txt
```