-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
10 more post-tuning OPs, regarding dialog data analysis from multiple…
… aspects (#513) * add api call * add call_api ops * clean * minor update * more tests * update tests * update prompts * fix unittest * update tests * add docs * minor fix * add API processor * refine API processor * refine * chunk and extract events * fix bugs * fix tests * refine tests * extract nickname * nickname test done * lightRAG to OP * doc done * remove extra test * relavant -> relevant * fix minor error * group by op done * ValueError -> Exception * fix config_all error * fix prepare_api_model * fix rank sample None * constant fix key * aggregator op * init python_lambda_mapper * set default arg * fix init * add python_file_mapper * support text & most relavant entities * coverage ignore_errors * index sample * role_playing_system_prompt_yaml * system_prompt begin * support batched * remove unforkable * support batched & add docs * add docs * fix docs * update docs * pre-commit done * fix batch bug * fix batch bug * fix filter batch * fix filter batch * system prompt recipe done * not rank for filter * limit pyav version * add test for op * tmp * doc done * skip api test * add env dependency * install by recipe * dialog sent intensity * add query * change to dj_install * change to dj_install * developer doc done * query sent_int mapper * query sentiment test done * change meta pass * doc done * sentiment detection * diff label * sentiment * test done * dialog intent label * fix typo * prompt adjust * add more test * query intent detection * for test * for test * change model * fix typo * fix typo * for test * for test * doc done * dialog topic detection * dialog topic detection * dialog topic detection * dialog topic detection * dialog topic detection * dialog topic detection * query topic detection * query topic detection * query topic detection * query topic detection * query topic detection * doc done * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * meta tags aggregator * naive reverse grouper * naive reverse grouper * tags specified field * doc done * - rename tests/ops/Aggregator intotests/ops/aggregator for right linking; - minor fix for OP doc * rename for right doc linking in test dir * fix bad dingtalk link --------- Co-authored-by: null <[email protected]> Co-authored-by: gece.gc <[email protected]> Co-authored-by: daoyuan <[email protected]>
- Loading branch information
1 parent
7d5f37d
commit 9466c73
Showing
43 changed files
with
2,621 additions
and
57 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,8 +1,9 @@ | ||
from .entity_attribute_aggregator import EntityAttributeAggregator | ||
from .meta_tags_aggregator import MetaTagsAggregator | ||
from .most_relavant_entities_aggregator import MostRelavantEntitiesAggregator | ||
from .nested_aggregator import NestedAggregator | ||
|
||
__all__ = [ | ||
'NestedAggregator', 'EntityAttributeAggregator', | ||
'NestedAggregator', 'MetaTagsAggregator', 'EntityAttributeAggregator', | ||
'MostRelavantEntitiesAggregator' | ||
] |
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
Oops, something went wrong.