18 lines
403 B
C#
18 lines
403 B
C#
|
|
/// Copyright (c) 2024 Xiaomi Corporation (authors: Fangjun Kuang)
|
||
|
|
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
namespace SherpaOnnx
|
||
|
|
{
|
||
|
|
[StructLayout(LayoutKind.Sequential)]
|
||
|
|
public struct OfflinePunctuationConfig
|
||
|
|
{
|
||
|
|
public OfflinePunctuationConfig()
|
||
|
|
{
|
||
|
|
Model = new OfflinePunctuationModelConfig();
|
||
|
|
}
|
||
|
|
public OfflinePunctuationModelConfig Model;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|