pyro-ppl / pyro
Showing 1 of 1 files from the diff.

@@ -52,7 +52,7 @@
Loading
52 52
        if not (isinstance(num_particles, int) and num_particles >= 2):
53 53
            raise ValueError("Expected num_particles >= 2, actual {}".format(num_particles))
54 54
        if not (isinstance(kl_scale, (float, int)) and kl_scale >= 0):
55 -
            raise ValueError("Expected kl_scalw >= 0, actual {}".format(kl_scale))
55 +
            raise ValueError("Expected kl_scale >= 0, actual {}".format(kl_scale))
56 56
        self.num_particles = num_particles
57 57
        self.vectorize_particles = True
58 58
        self.max_plate_nesting = max_plate_nesting
Files Coverage
pyro 93.80%
Project Totals (203 files) 93.80%
5482.5
3.5=.5
TRAVIS_OS_NAME=linux
5482.7
3.5=.5
TRAVIS_OS_NAME=linux
5482.6
3.5=.5
TRAVIS_OS_NAME=linux
5482.8
3.5=.5
TRAVIS_OS_NAME=linux
1
ignore:
2
  - "pyro/docutil.py"
3
  - "pyro/logger.py"
4

5
coverage:
6
  range: 60..95
7
  round: nearest
8
  precision: 2
9

10
comment: false
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading