cdevelop
2023-11-15 eff2570faf3dae7908db87edf4ef1a6ea88e5b33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef PHONESET_H
#define PHONESET_H
 
#include <stdint.h>
#include <string>
#include <vector>
#include <unordered_map>
#define UNIT_BEG_SIL_SYMBOL "<s>"
#define UNIT_END_SIL_SYMBOL "</s>"
#define UNIT_BLK_SYMBOL "<blank>"
 
using namespace std;
 
namespace funasr {
class PhoneSet {
  public:
    PhoneSet(const char *filename);
    ~PhoneSet();
    int Size() const;
    int String2Id(string str) const;
    string Id2String(int id) const;
    bool Find(string str) const;
    int GetBegSilPhnId() const;
    int GetEndSilPhnId() const;
    int GetBlkPhnId() const;
 
  private:
    vector<string> phone_;
    unordered_map<string, int> phn2Id_;
    void LoadPhoneSetFromYaml(const char* filename);
};
 
} // namespace funasr
#endif