aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
Commit message (Collapse)AuthorAgeFilesLines
* fix: update version number to 0.1.10 in pyproject.tomlv0.1.10HsiangNianian2026-01-061-1/+1
|
* fix: update version number to 0.1.9 in pyproject.tomlv0.1.9HsiangNianian2026-01-051-1/+1
|
* fix: update version number to 0.1.8 in pyproject.tomlv0.1.8HsiangNianian2026-01-051-1/+1
|
* feat: bump version to 0.1.7 for base-model-trpgner releasev0.1.7HsiangNianian2026-01-051-1/+1
|
* feat: add log processing and LLM annotation functionalityHsiangNianian2026-01-041-0/+3
|
* fix: update publish workflow to use uv for installing twine and publishing ↵HsiangNianian2025-12-311-0/+3
| | | | to TestPyPI
* fix: update license format in pyproject.tomlHsiangNianian2025-12-311-3/+1
|
* fix: replace COPYING file with LICENSE file in project structureHsiangNianian2025-12-311-1/+1
|
* fix: update license format in pyproject.tomlHsiangNianian2025-12-311-1/+2
|
* fix: add license-files entry in wheel build targetHsiangNianian2025-12-311-0/+1
|
* feat: Bump version to 0.1.6 in pyproject.tomlv0.1.6HsiangNianian2025-12-301-1/+1
|
* feat: Update Python version requirement and add onnxscript dependencyHsiangNianian2025-12-301-2/+7
| | | | | | - Changed the required Python version from >=3.12 to >=3.10 in pyproject.toml. - Reformatted the dependencies section for better readability. - Added "onnxscript>=0.5.7" to the train optional dependencies.
* feat: Bump version to 0.1.5 in pyproject.tomlv0.1.5HsiangNianian2025-12-301-1/+1
|
* feat: Bump version to 0.1.4 in pyproject.tomlv0.1.4HsiangNianian2025-12-301-1/+1
|
* feat: Bump version to 0.1.3 in pyproject.toml and __init__.pyv0.1.3HsiangNianian2025-12-301-1/+1
|
* refactor: Remove commented line about model file download in pyproject.tomlHsiangNianian2025-12-301-1/+0
|
* refactor: Update model download functionality and improve inference module ↵HsiangNianian2025-12-301-14/+3
| | | | to support automatic model retrieval from GitHub releases
* feat: Bump version to 0.1.2 in pyproject.tomlv0.1.2HsiangNianian2025-12-301-1/+1
|
* refactor: Refactor TRPG NER model SDK: restructure codebase into ↵HsiangNianian2025-12-301-33/+44
| | | | 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: Bump version to 0.1.1 and clean up shared data commentsv0.1.1HsiangNianian2025-12-301-2/+2
|
* feat: Refactor and enhance TRPG NER model SDKHsiangNianian2025-12-301-10/+106
| | | | | | | | | | | - 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.
* feat: Implement TRPG NER training and inference script with robust model ↵HsiangNianian2025-12-301-0/+5
| | | | | | | | | | | path detection and enhanced timestamp/speaker handling - Added main training and inference logic in main.py, including CoNLL parsing, tokenization, and model training. - Introduced TRPGParser class for inference with entity aggregation and special handling for timestamps and speakers. - Developed utility functions for converting word-level CoNLL to char-level and saving datasets in various formats. - Added ONNX export functionality for the trained model. - Created a comprehensive requirements.txt and updated pyproject.toml with necessary dependencies. - Implemented tests for ONNX inference to validate model outputs.
* refactor: Refactor code structure for improved readability and maintainabilityHsiangNianian2025-12-291-0/+14