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
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
Running phase: unpackPhase | |
unpacking source archive /nix/store/hww6jkx7zci7n6wp733ypjmdwmkl7sva-source | |
source root is source | |
Executing cargoSetupPostUnpackHook | |
unpacking source archive /nix/store/g4v19p2nn5sg2r22lm07ps1zkrl90rp2-llm-ls-0.4.0-vendor.tar.gz | |
Finished cargoSetupPostUnpackHook | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
Running phase: patchPhase | |
Executing cargoSetupPostPatchHook |
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
@nix { "action": "setPhase", "phase": "unpackPhase" } | |
unpacking sources | |
unpacking source archive /nix/store/hww6jkx7zci7n6wp733ypjmdwmkl7sva-source | |
source root is source | |
Executing cargoSetupPostUnpackHook | |
unpacking source archive /nix/store/g4v19p2nn5sg2r22lm07ps1zkrl90rp2-llm-ls-0.4.0-vendor.tar.gz | |
Finished cargoSetupPostUnpackHook | |
@nix { "action": "setPhase", "phase": "patchPhase" } | |
patching sources | |
Executing cargoSetupPostPatchHook |
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
""" An rbm implementation for TensorFlow, based closely on the one in Theano """ | |
import tensorflow as tf | |
import math | |
def sample_prob(probs): | |
"""Takes a tensor of probabilities (as from a sigmoidal activation) | |
and samples from all the distributions""" | |
return tf.nn.relu( | |
tf.sign( |
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
Java == EntrepriseQuality; // this will fail | |
Java.equals(AbstractEnterpriseQualityFactory.getInstance().create(DefaultEnterpriseQualityImpl.class)); // prefer this |