summaryrefslogtreecommitdiffstatshomepage
path: root/.github
Commit message (Collapse)AuthorAgeFilesLines
* feat: Refine model packaging process to include only necessary inference filesHsiangNianian2025-12-301-2/+8
|
* fix: Simplify artifact upload paths in GitHub release workflowHsiangNianian2025-12-301-4/+2
|
* feat: Add debug step for artifact structure and fix model zip path in releaseHsiangNianian2025-12-301-2/+7
|
* refactor: Clean up publish workflow by removing Test PyPI steps and ↵HsiangNianian2025-12-301-88/+15
| | | | improving artifact packaging
* feat: Enhance model download functionality to support zip file retrieval and ↵HsiangNianian2025-12-301-2/+31
| | | | extraction
* refactor: Update model download functionality and improve inference module ↵HsiangNianian2025-12-301-3/+1
| | | | to support automatic model retrieval from GitHub releases
* fix: Update command to check distribution in publish workflowHsiangNianian2025-12-301-1/+1
|
* refactor: Refactor TRPG NER model SDK: restructure codebase into ↵HsiangNianian2025-12-301-21/+75
| | | | 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.
* feat: Refactor and enhance TRPG NER model SDKHsiangNianian2025-12-301-0/+201
- Removed deprecated `word_conll_to_char_conll.py` utility and integrated its functionality into the new `utils` module. - Introduced a comprehensive GitHub Actions workflow for automated publishing to PyPI and GitHub Releases. - Added `__init__.py` files to establish package structure for `basemodel`, `inference`, `training`, and `utils` modules. - Implemented model downloading functionality in `download_model.py` to fetch pre-trained ONNX models. - Developed `TRPGParser` class for ONNX-based inference, including methods for parsing TRPG logs. - Created training utilities in `training/__init__.py` for NER model training with Hugging Face Transformers. - Enhanced utility functions for CoNLL file parsing and dataset creation. - Added command-line interface for converting CoNLL files to datasets with validation options.