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.
- Fix HIT-SCIR#69, postag lexicon is support via --postagger-lexicon option - Fix HIT-SCIR#101, by adding --threads option to ltp_server and ltp_test - Fix HIT-SCIR#102, by adding --evaluate option to training suite - For HIT-SCIR#103, current version drop all the multi-root dependency trees - For HIT-SCIR#107, current version convert on input but not on embedding/cluster
- Loading branch information
Showing
675 changed files
with
148,930 additions
and
19,940 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
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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
set (util_DIR ${SOURCE_DIR}/__util/) | ||
set (utils_DIR ${SOURCE_DIR}/utils) | ||
set (xml4nlp_DIR ${SOURCE_DIR}/__xml4nlp/) | ||
set (segmentor_DIR ${SOURCE_DIR}/segmentor) | ||
set (postagger_DIR ${SOURCE_DIR}/postagger) | ||
set (parser_DIR ${SOURCE_DIR}/parser) | ||
set (splitsnt_DIR ${SOURCE_DIR}/splitsnt) | ||
set (ner_DIR ${SOURCE_DIR}/ner/) | ||
set (srl_DIR ${SOURCE_DIR}/srl/) | ||
set (ltp_dll_DIR ${SOURCE_DIR}/__ltp_dll/) | ||
set (server_DIR ${SOURCE_DIR}/server/) | ||
set (utils_DIR ${SOURCE_DIR}/utils) | ||
set (xml4nlp_DIR ${SOURCE_DIR}/xml4nlp/) | ||
set (segmentor_DIR ${SOURCE_DIR}/segmentor) | ||
set (postagger_DIR ${SOURCE_DIR}/postagger) | ||
set (parser_DIR ${SOURCE_DIR}/parser) | ||
set (parser_n_DIR ${SOURCE_DIR}/parser_n) | ||
set (splitsnt_DIR ${SOURCE_DIR}/splitsnt) | ||
set (ner_DIR ${SOURCE_DIR}/ner/) | ||
set (srl_DIR ${SOURCE_DIR}/srl/) | ||
set (ltp_DIR ${SOURCE_DIR}/ltp/) | ||
set (server_DIR ${SOURCE_DIR}/server/) | ||
|
||
add_subdirectory ("__util") | ||
add_subdirectory ("__xml4nlp") | ||
add_subdirectory ("xml4nlp") | ||
add_subdirectory ("splitsnt") | ||
add_subdirectory ("segmentor") | ||
add_subdirectory ("postagger") | ||
add_subdirectory ("ner") | ||
add_subdirectory ("parser") | ||
#add_subdirectory ("parser") | ||
add_subdirectory ("parser.n") | ||
add_subdirectory ("srl") | ||
add_subdirectory ("__ltp_dll") | ||
add_subdirectory ("ltp") | ||
add_subdirectory ("console") | ||
|
||
# mongoose server is not supported in windows | ||
if (UNIX) | ||
add_subdirectory ("unittest") | ||
add_subdirectory ("server") | ||
add_subdirectory ("unittest") | ||
add_subdirectory ("server") | ||
endif() | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.