| namespace probingpt | |
| { | |
| //Struct for holding processed line | |
| struct line_text { | |
| StringPiece source_phrase; | |
| StringPiece target_phrase; | |
| StringPiece prob; | |
| StringPiece word_align; | |
| StringPiece counts; | |
| StringPiece sparse_score; | |
| StringPiece property; | |
| std::string property_to_be_binarized; | |
| }; | |
| //Struct for holding processed line | |
| struct target_text { | |
| std::vector<unsigned int> target_phrase; | |
| std::vector<float> prob; | |
| std::vector<size_t> word_align_term; | |
| std::vector<size_t> word_align_non_term; | |
| std::vector<char> counts; | |
| std::vector<char> sparse_score; | |
| std::vector<char> property; | |
| /* | |
| void Reset() | |
| { | |
| target_phrase.clear(); | |
| prob.clear(); | |
| word_all1.clear(); | |
| counts.clear(); | |
| sparse_score.clear(); | |
| property.clear(); | |
| } | |
| */ | |
| }; | |
| //Ask if it's better to have it receive a pointer to a line_text struct | |
| line_text splitLine(const StringPiece &textin, bool scfg); | |
| void reformatSCFG(line_text &output); | |
| std::vector<unsigned char> splitWordAll1(const StringPiece &textin); | |
| } | |