--- license: mit tags: - audio - encoder - bitwav --- # Bitwav Encoder (Optimized FP16) This repository contains optimized FP16 weights for the Bitwav Encoder and WavLM feature extractor. ## Files - `encoder_f16.safetensors`: Bitwav Encoder weights in FP16. - `wavlm_fp16.safetensors`: WavLM base plus weights converted to FP16 safetensors. ## Usage These weights are designed to be used with the `bitwav` inference package. ```python from enc import create_standalone_encoder encoder = create_standalone_encoder(weights_path=None, device="cuda") ``` The code automatically handles downloading from this repository if local weights are not found.