Dragonhead commited on
Commit
cabc19d
·
verified ·
1 Parent(s): ad522e1

Rebrand custom-code filenames to *_audar_asr.py (auto_map rewired; Qwen3-ASR arch identifiers + Apache-2.0 headers preserved)

Browse files
vllm-w4a16/__init__.py CHANGED
@@ -13,6 +13,6 @@
13
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
  # See the License for the specific language governing permissions and
15
  # limitations under the License.
16
- from .configuration_qwen3_asr import Qwen3ASRConfig
17
- from .modeling_qwen3_asr import Qwen3ASRForConditionalGeneration
18
- from .processing_qwen3_asr import Qwen3ASRProcessor
 
13
  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
  # See the License for the specific language governing permissions and
15
  # limitations under the License.
16
+ from .configuration_audar_asr import Qwen3ASRConfig
17
+ from .modeling_audar_asr import Qwen3ASRForConditionalGeneration
18
+ from .processing_audar_asr import Qwen3ASRProcessor
vllm-w4a16/config.json CHANGED
@@ -3,9 +3,9 @@
3
  "Qwen3ASRForConditionalGeneration"
4
  ],
5
  "auto_map": {
6
- "AutoConfig": "configuration_qwen3_asr.Qwen3ASRConfig",
7
- "AutoModel": "modeling_qwen3_asr.Qwen3ASRForConditionalGeneration",
8
- "AutoModelForCausalLM": "modeling_qwen3_asr.Qwen3ASRForConditionalGeneration"
9
  },
10
  "dtype": "bfloat16",
11
  "eos_token_id": 151645,
 
3
  "Qwen3ASRForConditionalGeneration"
4
  ],
5
  "auto_map": {
6
+ "AutoConfig": "configuration_audar_asr.Qwen3ASRConfig",
7
+ "AutoModel": "modeling_audar_asr.Qwen3ASRForConditionalGeneration",
8
+ "AutoModelForCausalLM": "modeling_audar_asr.Qwen3ASRForConditionalGeneration"
9
  },
10
  "dtype": "bfloat16",
11
  "eos_token_id": 151645,
vllm-w4a16/{configuration_qwen3_asr.py → configuration_audar_asr.py} RENAMED
File without changes
vllm-w4a16/{modeling_qwen3_asr.py → modeling_audar_asr.py} RENAMED
@@ -40,7 +40,7 @@ from transformers.utils import auto_docstring, can_return_tuple
40
  from transformers.utils.deprecation import deprecate_kwarg
41
  from transformers.utils.generic import TransformersKwargs, check_model_inputs
42
 
43
- from .configuration_qwen3_asr import (
44
  Qwen3ASRAudioEncoderConfig,
45
  Qwen3ASRConfig,
46
  Qwen3ASRThinkerConfig,
 
40
  from transformers.utils.deprecation import deprecate_kwarg
41
  from transformers.utils.generic import TransformersKwargs, check_model_inputs
42
 
43
+ from .configuration_audar_asr import (
44
  Qwen3ASRAudioEncoderConfig,
45
  Qwen3ASRConfig,
46
  Qwen3ASRThinkerConfig,
vllm-w4a16/{processing_qwen3_asr.py → processing_audar_asr.py} RENAMED
File without changes