training-charRNN icon indicating copy to clipboard operation
training-charRNN copied to clipboard

Training charRNN model for ml5js

Results 11 training-charRNN issues
Sort by recently updated
recently updated
newest added

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.15.4 to 2.7.2. Release notes Sourced from tensorflow's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

Paperspace: https://blog.paperspace.com/training-an-lstm-and-using-the-model-in-ml5-js/ Spell: https://youtu.be/xfuVcfwtEyw

help wanted
good first issue

I believe this training script only works with tensorflow 1.x so just noting that we should test / upgrade for compatibility with tensorflow 2.0 at some point.

help wanted

See the note at the end of the section.

and if it uses CPU how do I set it to GPU

I'm training the LSTM with some 80 MB files with the specified hyperparameters ```bash python train.py --data_dir=./data --rnn_size 2048 --num_layers 2 --seq_length 256 --batch_size 128 --output_keep_prob 0.25 ``` but after...

Is it possible to interrupt training, and then resume it later? Best case scenario, I train it on one machine, interrupt, and then continue training on another. No GPU involved,...

First of all: thanks for doing this! It's an awesome achievement in terms of making these tools accessible to everybody. 🎨🖌 I'm trying to create a model based on a...

Getting the following message while training: File "train.py", line 179, in main() File "train.py", line 76, in main train(args) File "train.py", line 91, in train data_loader = TextLoader(args.data_dir, args.batch_size, args.seq_length)...

Changes: - `protobuf` library added to the list of dependencies. Otherwise a `protobuf requires Python '>=3.7' but the running Python is 3.6.15` error appears when installing `tensorflow` - updated the...