You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deep learning for visualization and novelty detection in large X-ray diffraction datasets
Paper in press at npj Computational Materials. https://arxiv.org/abs/2104.04392
The text was updated successfully, but these errors were encountered:
@prinaldi3 to take the first crack at this.
@maffettone To review and edit.
@lbanko to review final PR.
Potential approach
build_dense_encoder_model()
, following lead fromxca/xca/ml/tf_models.py
Lines 18 to 30 in dfdad35
Returns:
Model(input_x, [z_mean, z_log_var], name="encoder")
build_dense_decoder_model()
Returns:
Model(z_in, x_dec, name="decoder")
VAE(tf.keras.Model)
with methods:
__init__(encoder_model, decoder_model, kl_loss_weight)
encode(x)
-> mean, log_var,reparameterize(mean, log_var)
-> z_sample,decode(z)
-> x_reconstruction,kl_loss(z_mean, z_log_var)
,reconstruction_loss(x, x_reconstruction)
Citation
Deep learning for visualization and novelty detection in large X-ray diffraction datasets
Paper in press at npj Computational Materials.
https://arxiv.org/abs/2104.04392
The text was updated successfully, but these errors were encountered: