Beta
BetaTimeDistribution
Bases: TimeDistribution
A class representing a beta time distribution.
Source code in bionemo/moco/distributions/time/beta.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
__init__(p1=2.0, p2=1.0, min_t=0.0, max_t=1.0, discrete_time=False, nsteps=None, rng_generator=None)
Initializes a BetaTimeDistribution object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
p1
|
Float
|
The first shape parameter of the beta distribution. |
2.0
|
p2
|
Float
|
The second shape parameter of the beta distribution. |
1.0
|
min_t
|
Float
|
The minimum time value. |
0.0
|
max_t
|
Float
|
The maximum time value. |
1.0
|
discrete_time
|
Bool
|
Whether the time is discrete. |
False
|
nsteps
|
Optional[int]
|
Number of nsteps for discretization. |
None
|
rng_generator
|
Optional[Generator]
|
An optional :class: |
None
|
Source code in bionemo/moco/distributions/time/beta.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
|
sample(n_samples, device='cpu', rng_generator=None)
Generates a specified number of samples from the uniform time distribution.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n_samples
|
int
|
The number of samples to generate. |
required |
device
|
str
|
cpu or gpu. |
'cpu'
|
rng_generator
|
Optional[Generator]
|
An optional :class: |
None
|
Returns:
Type | Description |
---|---|
A tensor of samples. |
Source code in bionemo/moco/distributions/time/beta.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|