From 05c8eba11c51ca928eee9c041de1a4192e590aec Mon Sep 17 00:00:00 2001
From: nianjiuhuiyi <64776403+nianjiuhuiyi@users.noreply.github.com>
Date: 星期五, 27 六月 2025 09:57:45 +0800
Subject: [PATCH] Fix: 修复c++后端服务因为空数组的异常退出,以及c++的http服务在收到Ctrl+C信号后无法正常退出 (#2571)
---
funasr/models/transducer/joint_network.py | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/funasr/models/transducer/joint_network.py b/funasr/models/transducer/joint_network.py
index 9fca632..955d6a0 100644
--- a/funasr/models/transducer/joint_network.py
+++ b/funasr/models/transducer/joint_network.py
@@ -1,10 +1,15 @@
-"""Transducer joint network implementation."""
+#!/usr/bin/env python3
+# -*- encoding: utf-8 -*-
+# Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights Reserved.
+# MIT License (https://opensource.org/licenses/MIT)
import torch
+from funasr.register import tables
from funasr.models.transformer.utils.nets_utils import get_activation
+@tables.register("joint_network_classes", "joint_network")
class JointNetwork(torch.nn.Module):
"""Transducer joint network module.
@@ -34,9 +39,7 @@
self.lin_out = torch.nn.Linear(joint_space_size, output_size)
- self.joint_activation = get_activation(
- joint_activation_type
- )
+ self.joint_activation = get_activation(joint_activation_type)
def forward(
self,
--
Gitblit v1.9.1