Tabnine Logo
GaussianDistribution.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.deeplearning4j.nn.conf.distribution.GaussianDistribution
constructor

Best Java code snippets using org.deeplearning4j.nn.conf.distribution.GaussianDistribution.<init> (Showing top 4 results out of 315)

origin: rahul-raj/Deeplearning4J

.layer(new DenseLayer.Builder()
    .nOut(500)
    .dist(new GaussianDistribution(0, 0.005))
    .activation(Activation.RELU)
    .build())
.layer(new DenseLayer.Builder()
    .nOut(500)
    .dist(new GaussianDistribution(0, 0.005))
    .activation(Activation.RELU)
    .build())
origin: sjsdfg/dl4j-tutorials

.layer(8,conv3x3("cnn5", 256, nonZeroBias))
.layer(9, maxPool("maxpool3", new int[]{3,3}))
.layer(10, fullyConnected("ffn1", 4096, nonZeroBias, dropOut, new GaussianDistribution(0, 0.005)))
.layer(11, fullyConnected("ffn2", 4096, nonZeroBias, dropOut, new GaussianDistribution(0, 0.005)))
.layer(12, new OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD)
    .name("output")
origin: org.deeplearning4j/deeplearning4j-nn

return new GaussianDistribution(m, s);
origin: org.deeplearning4j/deeplearning4j-zoo

                .name("maxpool3").build())
.layer(8, new DenseLayer.Builder().name("ffn1").nIn(256).nOut(4096)
        .dist(new GaussianDistribution(0, 0.005)).biasInit(nonZeroBias).dropOut(dropOut)
        .build())
.layer(9, new DenseLayer.Builder().name("ffn2").nOut(4096)
        .dist(new GaussianDistribution(0, 0.005)).biasInit(nonZeroBias).dropOut(dropOut)
        .build())
.layer(10, new OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD)
org.deeplearning4j.nn.conf.distributionGaussianDistribution<init>

Javadoc

Create a gaussian distribution (equivalent to normal) with the given mean and std

Popular methods of GaussianDistribution

  • getMean
  • getStd

Popular in Java

  • Making http post requests using okhttp
  • getResourceAsStream (ClassLoader)
  • requestLocationUpdates (LocationManager)
  • onRequestPermissionsResult (Fragment)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Permission (java.security)
    Legacy security code; do not use.
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now