You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We provide a Dockerfile that installs all required dependencies for encoding and decoding. The build process caches model weights inside the image. This allows the image to be used without an internet connection. [Please refer to instructions below.](#docker-image)
42
+
We provide a Dockerfile that installs all required dependencies for encoding and decoding. The build process caches the default model weights inside the image. This allows the image to be used without an internet connection. [Please refer to instructions below.](#docker-image)
40
43
41
44
42
45
### Compress audio
@@ -74,7 +77,7 @@ from audiotools import AudioSignal
74
77
model = DAC()
75
78
76
79
# Load compatible pre-trained model
77
-
model = load_model(dac.__model_version__)
80
+
model = load_model(tag="latest", model_type="44khz")
0 commit comments