-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reformat API doc and generate docs automatically (#299)
- Loading branch information
Showing
41 changed files
with
329 additions
and
1,210 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
from .column_wise_analysis import ColumnWiseAnalysis | ||
from .diversity_analysis import DiversityAnalysis | ||
from .overall_analysis import OverallAnalysis | ||
|
||
__all__ = [ | ||
'ColumnWiseAnalysis', | ||
'DiversityAnalysis', | ||
'OverallAnalysis', | ||
] |
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 +1,7 @@ | ||
from .config import * # noqa: F401,F403 | ||
from .config import export_config, init_configs, merge_config | ||
|
||
__all__ = [ | ||
'init_configs', | ||
'export_config', | ||
'merge_config', | ||
] |
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,3 +1,16 @@ | ||
from . import (csv_formatter, json_formatter, mixture_formatter, | ||
parquet_formatter, text_formatter, tsv_formatter) | ||
from .csv_formatter import CsvFormatter | ||
from .formatter import LocalFormatter, RemoteFormatter | ||
from .json_formatter import JsonFormatter | ||
from .load import load_formatter | ||
from .mixture_formatter import MixtureFormatter | ||
from .parquet_formatter import ParquetFormatter | ||
from .text_formatter import TextFormatter | ||
from .tsv_formatter import TsvFormatter | ||
|
||
__all__ = [ | ||
'load_formatter', 'JsonFormatter', 'LocalFormatter', 'RemoteFormatter', | ||
'TextFormatter', 'ParquetFormatter', 'CsvFormatter', 'TsvFormatter', | ||
'MixtureFormatter' | ||
] |
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,3 +1,11 @@ | ||
from . import deduplicator, filter, mapper, selector | ||
from .base_op import OPERATORS, Deduplicator, Filter, Mapper, Selector | ||
from .load import load_ops | ||
|
||
__all__ = [ | ||
'load_ops', | ||
'Filter', | ||
'Mapper', | ||
'Deduplicator', | ||
'Selector', | ||
] |
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
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 +1,5 @@ | ||
from . import frequency_specified_field_selector, topk_specified_field_selector | ||
from .frequency_specified_field_selector import FrequencySpecifiedFieldSelector | ||
from .topk_specified_field_selector import TopkSpecifiedFieldSelector | ||
|
||
__all__ = ['FrequencySpecifiedFieldSelector', 'TopkSpecifiedFieldSelector'] |
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.