Example project: Generating metal band names in Tensorflow.js - #232
Open
onesandzeroes wants to merge 1 commit into
Open
Example project: Generating metal band names in Tensorflow.js#232onesandzeroes wants to merge 1 commit into
onesandzeroes wants to merge 1 commit into
Conversation
I'm adding my hobby project https://www.makeitmetal.net/ to the README as an example of what you can do with textgenrnn. This library made it much easier to get the project off the ground. I trained the model in Python but ported it to Tensorflow.js so users could generate output on their end. I can see you've got a tensorflow.js port in your future plans so hopefully what I did is helpful. All the web/JS code is at https://gitlab.com/warsquid/make_it_metal, including an implementation of the custom AttentionWeightedAverage layer. The Python/model training code is at https://gitlab.com/warsquid/metalgen, I tweaked the model slightly to allow multiple context inputs so my JS code might need a bit of adaptation.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I'm adding my hobby project https://www.makeitmetal.net/ to the README as an example of what you can do with textgenrnn. This library made it much easier to get the project off the ground, so thanks!
I trained the model in Python but ported it to Tensorflow.js so users could generate output on their end. I can see you've got a tensorflow.js port in your future plans so hopefully what I did is helpful. All the web/JS code is at https://gitlab.com/warsquid/make_it_metal, including an implementation of the custom AttentionWeightedAverage layer. The Python/model training code is at https://gitlab.com/warsquid/metalgen, I tweaked the model slightly to allow multiple context inputs so my JS code might need a bit of adaptation.