b2989af3b396e30a1d38259e9c523a5b2a9175b2,jaxnerf/nerf/model_utils.py,,piecewise_constant_pdf,#,221

Before Change



  // Compute the PDF and CDF for each weight vector.
  pdf = weights / weight_sum
  cdf = jnp.cumsum(pdf, axis=-1)
  cdf = jnp.concatenate([jnp.zeros(list(cdf.shape[:-1]) + [1]), cdf], axis=-1)

  // Take uniform samples
  if randomized:

After Change


  // Compute the PDF and CDF for each weight vector, while ensuring that the CDF
  // starts with exactly 0 and ends with exactly 1.
  pdf = weights / weight_sum
  cdf = jnp.minimum(1, jnp.cumsum(pdf[Ellipsis, :-1], axis=-1))
  cdf = jnp.concatenate([
      jnp.zeros(list(cdf.shape[:-1]) + [1]), cdf,
      jnp.ones(list(cdf.shape[:-1]) + [1])
  ],
                        axis=-1)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: google-research/google-research
Commit Name: b2989af3b396e30a1d38259e9c523a5b2a9175b2
Time: 2021-01-12
Author: barron@google.com
File Name: jaxnerf/nerf/model_utils.py
Class Name:
Method Name: piecewise_constant_pdf


Project Name: explosion/thinc
Commit Name: 089e21018b6501ceec85f6936b1c486e635d8897
Time: 2021-01-20
Author: honnibal+gh@gmail.com
File Name: thinc/layers/reduce_last.py
Class Name:
Method Name: forward


Project Name: pymc-devs/pymc3
Commit Name: b3388a99c35e7df5ebef0718838744ebf039c09c
Time: 2019-11-17
Author: colcarroll@gmail.com
File Name: pymc3/distributions/timeseries.py
Class Name: GaussianRandomWalk
Method Name: _random