️ (Schedulers) add get_velocity, VarianceType, PredictionType exports

This commit is contained in:
Laureηt 2023-08-14 17:19:16 +02:00
parent 5ec22c47b2
commit b90b50de27
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
2 changed files with 48 additions and 3 deletions

View file

@ -30,7 +30,22 @@ import .Schedulers:
# Scheduler methods
forward,
reverse
reverse,
get_velocity,
# VarianceType enum
VarianceType,
FIXED_SMALL,
FIXED_SMALL_LOG,
FIXED_LARGE,
FIXED_LARGE_LOG,
LEARNED,
# PredictionType enum
PredictionType,
EPSILON,
SAMPLE,
VELOCITY
export
# Scheduler
@ -38,6 +53,21 @@ export
# Scheduler methods
forward,
reverse
reverse,
get_velocity,
# VarianceType enum
VarianceType,
FIXED_SMALL,
FIXED_SMALL_LOG,
FIXED_LARGE,
FIXED_LARGE_LOG,
LEARNED,
# PredictionType enum
PredictionType,
EPSILON,
SAMPLE,
VELOCITY
end # module Diffusers

View file

@ -8,6 +8,21 @@ export
# Scheduler methods
forward,
reverse
reverse,
get_velocity,
# VarianceType enum
VarianceType,
FIXED_SMALL,
FIXED_SMALL_LOG,
FIXED_LARGE,
FIXED_LARGE_LOG,
LEARNED,
# PredictionType enum
PredictionType,
EPSILON,
SAMPLE,
VELOCITY
end # module Schedulers