This file contains 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
using ReverseDiff: GradientTape, gradient, gradient!, compile | |
#= | |
Here I am using what I would consider classical stats style of having the | |
observations as rows. Julia is column major order, so it is often common | |
to see the observations as columns and variables as rows. With certain types | |
of operations, this can have major performance implications. | |
I was using Julia v0.5 at the time of writing this. | |
=# |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#### Log in module ### | |
USER <- reactiveValues(Logged = Logged) | |
passwdInput <- function(inputId, label) { | |
tagList( | |
tags$label(label), | |
tags$input(id = inputId, type="password", value="") | |
) | |
} |