forked from HIT-SCIR/ltp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add pos cmdline test, and multithreaded test
- Loading branch information
Showing
12 changed files
with
347 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
/* | ||
* Multi-threaded postagger test program. The user input a line | ||
* of Chinese sentence an the program will output its segment | ||
* result. | ||
* | ||
* @dependency package: tinythread - a portable c++ wrapper for | ||
* multi-thread library. | ||
* @author: LIU, Yijia | ||
* @data: 2013-09-24 | ||
* | ||
* This program is special designed for UNIX user, for get time | ||
* is not compilable under MSVC | ||
*/ | ||
#include <iostream> | ||
#include <sstream> | ||
#include <cstring> | ||
#include <ctime> | ||
#include <vector> | ||
#include <list> | ||
#include <sys/time.h> | ||
#include <sys/types.h> | ||
|
||
#include "postag_dll.h" | ||
#include "tinythread.h" | ||
#include "fast_mutex.h" | ||
|
||
using namespace std; | ||
using namespace tthread; | ||
|
||
const int MAX_LEN = 1024; | ||
|
||
double get_time(void) { | ||
struct timeval tv; | ||
gettimeofday(&tv, NULL); | ||
return tv.tv_sec + (tv.tv_usec / 1000000.0); | ||
} | ||
|
||
class Dispatcher { | ||
public: | ||
Dispatcher( void * model ) { | ||
_model = model; | ||
} | ||
|
||
int next(std::vector<std::string> &words) { | ||
std::string line; | ||
std::string word; | ||
lock_guard<fast_mutex> guard(_mutex); | ||
if (getline(std::cin, line, '\n')) { | ||
std::stringstream S(line); | ||
words.clear(); | ||
while (S >> word) { words.push_back(word); } | ||
} else { | ||
return -1; | ||
} | ||
return 0; | ||
} | ||
|
||
void output(const std::vector<std::string> & words, | ||
const std::vector<std::string> &postags) { | ||
lock_guard<fast_mutex> guard(_mutex); | ||
if (words.size() != postags.size()) { | ||
return; | ||
} | ||
|
||
for (int i = 0; i < words.size(); ++ i) { | ||
std::cout << words[i] << "_" << postags[i]; | ||
std::cout << (i == words.size() - 1 ? '\n' : '|'); | ||
} | ||
return; | ||
} | ||
|
||
void * model() { | ||
return _model; | ||
} | ||
|
||
private: | ||
fast_mutex _mutex; | ||
void * _model; | ||
string _sentence; | ||
}; | ||
|
||
void multithreaded_postag( void * args) { | ||
std::vector<std::string> words; | ||
std::vector<std::string> postags; | ||
|
||
Dispatcher * dispatcher = (Dispatcher *)args; | ||
void * model = dispatcher->model(); | ||
|
||
while (true) { | ||
int ret = dispatcher->next(words); | ||
|
||
if (ret < 0) | ||
break; | ||
|
||
postags.clear(); | ||
postagger_postag(model, words, postags); | ||
dispatcher->output(words, postags); | ||
} | ||
|
||
return; | ||
} | ||
|
||
int main(int argc, char ** argv) { | ||
if (argc < 1 || (0 == strcmp(argv[1], "-h"))) { | ||
std::cerr << "Usage: ./multi_pos_cmdline [model path]" << std::endl; | ||
std::cerr << std::endl; | ||
std::cerr << "This program recieve input word sequence from stdin." << std::endl; | ||
std::cerr << "One sentence per line. Words are separated by space." << std::endl; | ||
return -1; | ||
} | ||
|
||
void * engine = postagger_create_postagger(argv[1]); | ||
|
||
if (!engine) { | ||
return -1; | ||
} | ||
|
||
int num_threads = thread::hardware_concurrency(); | ||
std::cerr << "TRACE: Model is loaded" << std::endl; | ||
std::cerr << "TRACE: Running " << num_threads << " thread(s)" << std::endl; | ||
|
||
Dispatcher * dispatcher = new Dispatcher( engine ); | ||
|
||
double tm = get_time(); | ||
list<thread *> thread_list; | ||
for (int i = 0; i < num_threads; ++ i) { | ||
thread * t = new thread( multithreaded_postag, (void *)dispatcher ); | ||
thread_list.push_back( t ); | ||
} | ||
|
||
for (list<thread *>::iterator i = thread_list.begin(); | ||
i != thread_list.end(); ++ i) { | ||
thread * t = *i; | ||
t->join(); | ||
delete t; | ||
} | ||
|
||
tm = get_time() - tm; | ||
std::cerr << "TRACE: consume " | ||
<< tm | ||
<< " seconds." | ||
<< std::endl; | ||
|
||
return 0; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Single-threaded segmentor test program. The user input a line | ||
* of Chinese sentence an the program will output its segment | ||
* result. | ||
* | ||
* @dependency package: tinythread - a portable c++ wrapper for | ||
* multi-thread library. | ||
* @author: LIU, Yijia | ||
* @data: 2013-09-24 | ||
* | ||
* This program is special designed for UNIX user, for get time | ||
* is not compilable under MSVC | ||
*/ | ||
#include <iostream> | ||
#include <sstream> | ||
#include <ctime> | ||
#include <cstring> | ||
#include <string> | ||
#include <sys/time.h> | ||
#include <sys/types.h> | ||
#include "postag_dll.h" | ||
|
||
double get_time(void) { | ||
struct timeval tv; | ||
gettimeofday(&tv, NULL); | ||
return tv.tv_sec + (tv.tv_usec / 1000000.0); | ||
} | ||
|
||
int main(int argc, char * argv[]) { | ||
if (argc < 1 || (0 == strcmp(argv[1], "-h"))) { | ||
std::cerr << "Example: ./pos_cmdline [model path]" << std::endl; | ||
std::cerr << std::endl; | ||
std::cerr << "This program recieve input word sequence from stdin." << std::endl; | ||
std::cerr << "One sentence per line. Words are separated by space." << std::endl; | ||
std::cerr << std::endl; | ||
return 1; | ||
} | ||
|
||
void * engine = postagger_create_postagger(argv[1]); | ||
if (!engine) { | ||
std::cerr << "WARNINIG : Failed to load model." << std::endl; | ||
return -1; | ||
} | ||
|
||
std::string line; | ||
std::string word; | ||
std::vector<std::string> words; | ||
std::vector<std::string> postags; | ||
|
||
std::cerr << "TRACE: Model is loaded" << std::endl; | ||
double tm = get_time(); | ||
|
||
while (std::getline(std::cin, line, '\n')) { | ||
std::stringstream S(line); | ||
words.clear(); | ||
while (S >> word) { words.push_back(word); } | ||
|
||
if (words.size() == 0) { continue; } | ||
int len = postagger_postag(engine, words, postags); | ||
if (postags.size() != words.size()) { | ||
std::cerr << "WARNINIG: Number of postags is different from number of words" | ||
<< std::endl; | ||
} | ||
|
||
for (int i = 0; i < len; ++ i) { | ||
std::cout << words[i] << "_" << postags[i]; | ||
if (i+1 == len) std::cout <<std::endl; | ||
else std::cout<< "|"; | ||
} | ||
} | ||
|
||
postagger_release_postagger(engine); | ||
|
||
tm = get_time() - tm; | ||
std::cerr << "TRACE: consume " | ||
<< tm | ||
<< " seconds." | ||
<< std::endl; | ||
|
||
return 0; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.