manyeyes
2023-06-21 c2a2575f198b1bfd452ea5769bec81bcce3d3a42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace AliFsmnVadSharp.Model
{
    internal class E2EVadFrameProbEntity
    {
        private double _noise_prob = 0.0F;
        private double _speech_prob = 0.0F;
        private double _score = 0.0F;
        private int _frame_id = 0;
        private int _frm_state = 0;
 
        public double noise_prob { get => _noise_prob; set => _noise_prob = value; }
        public double speech_prob { get => _speech_prob; set => _speech_prob = value; }
        public double score { get => _score; set => _score = value; }
        public int frame_id { get => _frame_id; set => _frame_id = value; }
        public int frm_state { get => _frm_state; set => _frm_state = value; }
    }
}