HighDimSynthesizer.import_model¶
-
static
HighDimSynthesizer.
import_model
(fp) Load HighDimSynthesizer from file.
- Parameters
fp (BinaryIO) – File object able to read bytes-like objects.
Examples
Open binary file and load
HighDimSynthesizer
:>>> with open('synthesizer.bin', 'rb') as f: synthesizer = HighDimSynthesizer.import_model(f)