diff options
| author | 2025-12-30 20:16:05 +0800 | |
|---|---|---|
| committer | 2025-12-30 20:16:05 +0800 | |
| commit | 5dd166366b8a2f4699c1841ebd7fceabcd9868a4 (patch) | |
| tree | 85d78772054529579176547c00aee9559cffff37 /utils | |
| parent | dd55c70225367dec9e8d88821b4d65fcd24edd65 (diff) | |
| download | base-model-5dd166366b8a2f4699c1841ebd7fceabcd9868a4.tar.gz base-model-5dd166366b8a2f4699c1841ebd7fceabcd9868a4.zip | |
refactor: Refactor TRPG NER model SDK: restructure codebase into base_model_trpgner package, implement training and inference modules, and add model download functionality. Remove legacy training and utils modules. Enhance documentation and examples for better usability.
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/word_conll_to_char_conll.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/word_conll_to_char_conll.py b/utils/word_conll_to_char_conll.py index e52405f..9f4217a 100644 --- a/utils/word_conll_to_char_conll.py +++ b/utils/word_conll_to_char_conll.py @@ -52,4 +52,5 @@ if __name__ == "__main__": with open(output_fp, "w", encoding="utf-8") as f: f.write("\n".join(char_conll_lines) + "\n") - print(f"Converted {input_fp} to character-level CoNLL format at {output_fp}")
\ No newline at end of file + print(f"Converted {input_fp} to character-level CoNLL format at {output_fp}") + |
