(self, schedule, timesteps)
| 4 | |
| 5 | class Schedule: |
| 6 | def __init__(self, schedule, timesteps): |
| 7 | self.timesteps = timesteps |
| 8 | self.schedule = schedule |
| 9 | |
| 10 | def cosine_beta_schedule(self, s=0.001): |
| 11 | timesteps = self.timesteps |
nothing calls this directly
no outgoing calls
no test coverage detected