From e0fca115cbae19e8280eb0b31286195d5f5473f6 Mon Sep 17 00:00:00 2001
From: 语帆 <yf352572@alibaba-inc.com>
Date: 星期三, 28 二月 2024 17:10:49 +0800
Subject: [PATCH] test
---
funasr/models/lcbnet/model.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/funasr/models/lcbnet/model.py b/funasr/models/lcbnet/model.py
index deddf73..ab557e6 100644
--- a/funasr/models/lcbnet/model.py
+++ b/funasr/models/lcbnet/model.py
@@ -443,8 +443,8 @@
encoder_out = encoder_out[0]
ocr_list_new = [[x + 1 if x != 0 else x for x in sublist] for sublist in ocr_sample_list]
- ocr = torch.tensor(ocr_list_new)
- ocr_lengths = ocr.new_full([1], dtype=torch.long, fill_value=ocr.size(1))
+ ocr = torch.tensor(ocr_list_new).to(device=kwargs["device"])
+ ocr_lengths = ocr.new_full([1], dtype=torch.long, fill_value=ocr.size(1)).to(device=kwargs["device"])
ocr, ocr_lens, _ = self.text_encoder(ocr, ocr_lengths)
fusion_out, _, _, _ = self.fusion_encoder(encoder_out,None, ocr, None)
encoder_out = encoder_out + fusion_out
--
Gitblit v1.9.1