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.
template_unittest & empty string check & srl example
- Loading branch information
Showing
130 changed files
with
31,171 additions
and
716 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 |
---|---|---|
@@ -1,103 +1,103 @@ | ||
#include "decoder.h" | ||
#include "ner/decoder.h" | ||
|
||
namespace ltp { | ||
namespace ner { | ||
|
||
void Decoder::decode(Instance * inst) { | ||
init_lattice(inst); | ||
viterbi_decode(inst); | ||
get_result(inst); | ||
free_lattice(); | ||
init_lattice(inst); | ||
viterbi_decode(inst); | ||
get_result(inst); | ||
free_lattice(); | ||
} | ||
|
||
void Decoder::init_lattice(const Instance * inst) { | ||
int len = inst->size(); | ||
lattice.resize(len, L); | ||
lattice = NULL; | ||
int len = inst->size(); | ||
lattice.resize(len, L); | ||
lattice = NULL; | ||
} | ||
|
||
void Decoder::viterbi_decode(const Instance * inst) { | ||
int len = inst->size(); | ||
for (int i = 0; i < len; ++ i) { | ||
for (int l = 0; l < L; ++ l) { | ||
if (i == 0) { | ||
LatticeItem * item = new LatticeItem(i, l, inst->uni_scores[i][l], NULL); | ||
lattice_insert(lattice[i][l], item); | ||
} else { | ||
for (int pl = 0; pl < L; ++ pl) { | ||
if (false == base.legal_trans(pl, l)) { | ||
continue; | ||
} | ||
|
||
double score = 0.; | ||
const LatticeItem * prev = lattice[i-1][pl]; | ||
|
||
if (!prev) { | ||
continue; | ||
} | ||
|
||
// std::cout << i << " " << pl << " " << l << std::endl; | ||
score = inst->uni_scores[i][l] + inst->bi_scores[pl][l] + prev->score; | ||
const LatticeItem * item = new LatticeItem(i, l, score, prev); | ||
lattice_insert(lattice[i][l], item); | ||
} | ||
} // end for if i == 0 | ||
int len = inst->size(); | ||
for (int i = 0; i < len; ++ i) { | ||
for (int l = 0; l < L; ++ l) { | ||
if (i == 0) { | ||
LatticeItem * item = new LatticeItem(i, l, inst->uni_scores[i][l], NULL); | ||
lattice_insert(lattice[i][l], item); | ||
} else { | ||
for (int pl = 0; pl < L; ++ pl) { | ||
if (false == base.legal_trans(pl, l)) { | ||
continue; | ||
} | ||
|
||
double score = 0.; | ||
const LatticeItem * prev = lattice[i-1][pl]; | ||
|
||
if (!prev) { | ||
continue; | ||
} | ||
|
||
// std::cout << i << " " << pl << " " << l << std::endl; | ||
score = inst->uni_scores[i][l] + inst->bi_scores[pl][l] + prev->score; | ||
const LatticeItem * item = new LatticeItem(i, l, score, prev); | ||
lattice_insert(lattice[i][l], item); | ||
} | ||
} // end for if i == 0 | ||
} | ||
} | ||
} | ||
|
||
void Decoder::get_result(Instance * inst) { | ||
int len = inst->size(); | ||
const LatticeItem * best_item = NULL; | ||
for (int l = 0; l < L; ++ l) { | ||
if (!lattice[len-1][l]) { | ||
continue; | ||
} | ||
if (best_item == NULL || (lattice[len-1][l]->score > best_item->score)) { | ||
best_item = lattice[len - 1][l]; | ||
} | ||
int len = inst->size(); | ||
const LatticeItem * best_item = NULL; | ||
for (int l = 0; l < L; ++ l) { | ||
if (!lattice[len-1][l]) { | ||
continue; | ||
} | ||
if (best_item == NULL || (lattice[len-1][l]->score > best_item->score)) { | ||
best_item = lattice[len - 1][l]; | ||
} | ||
} | ||
|
||
const LatticeItem * item = best_item; | ||
inst->predicted_tagsidx.resize(len); | ||
const LatticeItem * item = best_item; | ||
inst->predicted_tagsidx.resize(len); | ||
|
||
while (item) { | ||
inst->predicted_tagsidx[item->i] = item->l; | ||
// std::cout << item->i << " " << item->l << std::endl; | ||
item = item->prev; | ||
} | ||
while (item) { | ||
inst->predicted_tagsidx[item->i] = item->l; | ||
// std::cout << item->i << " " << item->l << std::endl; | ||
item = item->prev; | ||
} | ||
} | ||
|
||
void Decoder::free_lattice() { | ||
for (int i = 0; i < lattice.nrows(); ++ i) { | ||
for (int j = 0; j < lattice.ncols(); ++ j) { | ||
if (lattice[i][j]) delete lattice[i][j]; | ||
} | ||
for (int i = 0; i < lattice.nrows(); ++ i) { | ||
for (int j = 0; j < lattice.ncols(); ++ j) { | ||
if (lattice[i][j]) delete lattice[i][j]; | ||
} | ||
} | ||
} | ||
|
||
/*void KBestDecoder::decode(Instance * inst, KBestDecodeResult & result) { | ||
init_lattice(inst); | ||
kbest_viterbi_decode(inst); | ||
get_result(result); | ||
free_lattice(); | ||
init_lattice(inst); | ||
kbest_viterbi_decode(inst); | ||
get_result(result); | ||
free_lattice(); | ||
} | ||
void KBestDecoder::init_lattice(const Instance * inst) { | ||
int len = inst->len(); | ||
lattice.resize(len, L); | ||
int len = inst->len(); | ||
lattice.resize(len, L); | ||
for (int i = 0; i < len; ++ i) { | ||
for (int l = 0; l < L; ++ l) { | ||
lattice[i][l] = new KHeap<LatticeItem>(k); | ||
} | ||
for (int i = 0; i < len; ++ i) { | ||
for (int l = 0; l < L; ++ l) { | ||
lattice[i][l] = new KHeap<LatticeItem>(k); | ||
} | ||
} | ||
} | ||
void KBestDecoder::kbest_viterbi_decode(const Instance * inst) { | ||
}*/ | ||
|
||
|
||
} // end for namespace ner | ||
} // end for namespace ltp | ||
} // end for namespace ner | ||
} // end for namespace ltp | ||
|
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
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 was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
#include "model.h" | ||
#include "ner/model.h" | ||
|
||
namespace ltp { | ||
namespace ner { | ||
|
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
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,4 +1,4 @@ | ||
#include "options.h" | ||
#include "ner/options.h" | ||
|
||
namespace ltp { | ||
namespace ner { | ||
|
Oops, something went wrong.