Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.choice() - option to actually return the choice? #3

Open
rhysstubbs opened this issue Apr 22, 2019 · 0 comments
Open

.choice() - option to actually return the choice? #3

rhysstubbs opened this issue Apr 22, 2019 · 0 comments

Comments

@rhysstubbs
Copy link

rhysstubbs commented Apr 22, 2019

I am using the choice function in the following way:

  this.squash = hpjs.choice(methods.activation);

However, the choice function returns an object, the documentation makes out as if a random element in the array is returned. Am I misusing the function?

NB: I know that this could be achieved manually, but I am using the library so it makes sense to utilise functions that are available. The manual way could be:

this.squash = methods.activation[Object.keys(methods.activation)[Math.floor(Math.random() * Object.keys(methods.activation).length)]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant