From fdcaf04f904b39e18d7c86cbea1fc3ed4eda6671 Mon Sep 17 00:00:00 2001 From: mehmetbutgul Date: Mon, 20 Jan 2025 18:55:02 +0000 Subject: [PATCH] deploy: 47fa80b9fde19700de8dcb9500da55b58ebb6387 --- docs/en/licensed_annotators.html | 43 +- en/licensed_annotator_entries/AssertionDL.md | 6 + .../BertSentenceChunkEmbeddings.md | 6 +- .../ContextualEntityFilterer.md | 2 + .../ContextualEntityRuler.md | 16 +- .../DeIdentification.md | 4 + .../FewShotAssertionClassifier.md | 3 + feed.xml | 2 +- sitemap.xml | 2334 ++++++++--------- 9 files changed, 1228 insertions(+), 1188 deletions(-) diff --git a/docs/en/licensed_annotators.html b/docs/en/licensed_annotators.html index 6c8022606c..6770e1aece 100644 --- a/docs/en/licensed_annotators.html +++ b/docs/en/licensed_annotators.html @@ -2289,6 +2289,15 @@

AssertionDL

  • datasetInfo (Str): Descriptive information about the dataset being used.

  • +
  • +

    blackList (list[str]): If defined, list of entities to ignore. The rest will be processed.

    +
  • +
  • +

    whiteList (list[str]): If defined, list of entities to process. The rest will be ignored. Do not include IOB prefix on labels.

    +
  • +
  • +

    caseSensitive (Bool): Determines whether the definitions of the white listed and black listed entities are case sensitive. Default: True.

    +
  • For pretrained models please see the @@ -4981,9 +4990,15 @@

    BertSentenceChunkEmbeddings

  • caseSensitive: Determines whether the definitions of the white listed entities are case sensitive.

  • +
  • +

    strategy: Strategy for computing embeddings. Supported strategies are: sentence_average, scope_average, chunk_only, scope_only. The default is sentence_average.

    +
  • +
  • +

    scopeWindow: cope window to calculate scope embeddings. The scope window is defined by two non-negative integers. The default is [0, 0], which means only the chunk embeddings are used. The first integer defines the number of tokens before the chunk and the second integer defines the number of tokens after the chunk.

    +
  • -

    All the parameters can be set using the corresponding set method in camel case. For example, .setInputcols().

    +

    All the parameters can be set using the corresponding set method in camel case. For example, .setInputCols().

    For more information and examples of BertSentenceChunkEmbeddings annotator, you can check the Spark NLP Workshop, and in special, the notebook 24.1.Improved_Entity_Resolution_with_SentenceChunkEmbeddings.ipynb.

    @@ -10128,6 +10143,8 @@

    ContextualEntityFilterer

  • blackListWords: The black list of words. If a word from this list appears within the scope window, the chunk will be filtered out.
  • whiteListWords: The white list of words. If a word from this list appears within the scope window, the chunk will be kept.
  • confidenceThreshold: The confidence threshold to filter the chunks. Filtering is only applied if the confidence of the chunk is below the threshold.
  • +
  • possibleRegexContext : The possible regex context to filter the chunks. If the regex is found in the context(chunk), the chunk is kept.
  • +
  • impossibleRegexContext : The impossible regex context to filter the chunks. If the regex is found in the context(chunk), the chunk is removed.
  • @@ -10339,11 +10356,11 @@

    ContextualEntityRuler

    Parameters:

    @@ -10444,7 +10459,6 @@

    ContextualEntityRuler

    "replaceEntity" : "Modified_Date", "mode" : "include" } - ] contextual_entity_ruler = medical.ContextualEntityRuler() \ @@ -11595,6 +11609,12 @@

    DeIdentification

    If False, the month will be modified along with the year and day. Default: False.

    +
  • +

    keepTextSizeForObfuscation : Whether to keep the text length same obfuscating entities. If True, the output text will remain the same if a same length fake is available, otherwise length might vary.

    +
  • +
  • +

    fakerLengthOffset : It specifies how much length deviation is accepted in obfuscation, with keepTextSizeForObfuscation enabled. It must be greater than 0.

    +
  • To create a configured DeIdentificationModel, please see the example of DeIdentification.

    @@ -16215,6 +16235,9 @@

    FewShotAssertionClassifierModel

  • batchSize (Int): Batch size
  • caseSensitive (Bool): Whether the classifier is sensitive to text casing
  • maxSentenceLength (Int): The maximum length of the input text
  • +
  • blackList (list[str]): If defined, list of entities to ignore. The rest will be processed.
  • +
  • whiteList (list[str]): If defined, list of entities to process. The rest will be ignored. Do not include IOB prefix on labels.
  • +
  • caseSensitive (Bool): Determines whether the definitions of the white listed and black listed entities are case sensitive. Default: True.
  • Input Annotator Types: DOCUMENT, CHUNK

    diff --git a/en/licensed_annotator_entries/AssertionDL.md b/en/licensed_annotator_entries/AssertionDL.md index fd994b983c..de66210190 100644 --- a/en/licensed_annotator_entries/AssertionDL.md +++ b/en/licensed_annotator_entries/AssertionDL.md @@ -33,6 +33,12 @@ Parameters: - `datasetInfo` *(Str)*: Descriptive information about the dataset being used. +- `blackList` *(list[str])*: If defined, list of entities to ignore. The rest will be processed. + +- `whiteList` *(list[str])*: If defined, list of entities to process. The rest will be ignored. Do not include IOB prefix on labels. + +- `caseSensitive` *(Bool)*: Determines whether the definitions of the white listed and black listed entities are case sensitive. Default: True. + For pretrained models please see the [Models Hub](https://nlp.johnsnowlabs.com/models?task=Assertion+Status) for available models. {%- endcapture -%} diff --git a/en/licensed_annotator_entries/BertSentenceChunkEmbeddings.md b/en/licensed_annotator_entries/BertSentenceChunkEmbeddings.md index 82870fbcdd..5d59868cfe 100644 --- a/en/licensed_annotator_entries/BertSentenceChunkEmbeddings.md +++ b/en/licensed_annotator_entries/BertSentenceChunkEmbeddings.md @@ -21,7 +21,11 @@ Parameters: - `caseSensitive`: Determines whether the definitions of the white listed entities are case sensitive. -All the parameters can be set using the corresponding set method in camel case. For example, `.setInputcols()`. +- `strategy`: Strategy for computing embeddings. Supported strategies are: `sentence_average`, `scope_average`, `chunk_only`, `scope_only`. The default is `sentence_average`. + +- `scopeWindow`: cope window to calculate scope embeddings. The scope window is defined by two non-negative integers. The default is [0, 0], which means only the chunk embeddings are used. The first integer defines the number of tokens before the chunk and the second integer defines the number of tokens after the chunk. + +All the parameters can be set using the corresponding set method in camel case. For example, `.setInputCols()`. > For more information and examples of `BertSentenceChunkEmbeddings` annotator, you can check the [Spark NLP Workshop](https://github.com/JohnSnowLabs/spark-nlp-workshop), and in special, the notebook [24.1.Improved_Entity_Resolution_with_SentenceChunkEmbeddings.ipynb](https://github.com/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/Certification_Trainings/Healthcare/24.1.Improved_Entity_Resolution_with_SentenceChunkEmbeddings.ipynb). diff --git a/en/licensed_annotator_entries/ContextualEntityFilterer.md b/en/licensed_annotator_entries/ContextualEntityFilterer.md index 6b1afdb37d..1284acc9a2 100644 --- a/en/licensed_annotator_entries/ContextualEntityFilterer.md +++ b/en/licensed_annotator_entries/ContextualEntityFilterer.md @@ -24,6 +24,8 @@ Parameters: - `blackListWords`: The black list of words. If a word from this list appears within the scope window, the chunk will be filtered out. - `whiteListWords`: The white list of words. If a word from this list appears within the scope window, the chunk will be kept. - `confidenceThreshold`: The confidence threshold to filter the chunks. Filtering is only applied if the confidence of the chunk is below the threshold. + - `possibleRegexContext` : The possible regex context to filter the chunks. If the regex is found in the context(chunk), the chunk is kept. + - `impossibleRegexContext` : The impossible regex context to filter the chunks. If the regex is found in the context(chunk), the chunk is removed. {%- endcapture -%} diff --git a/en/licensed_annotator_entries/ContextualEntityRuler.md b/en/licensed_annotator_entries/ContextualEntityRuler.md index 603694ee98..41ddaba45f 100644 --- a/en/licensed_annotator_entries/ContextualEntityRuler.md +++ b/en/licensed_annotator_entries/ContextualEntityRuler.md @@ -14,11 +14,11 @@ It is particularly useful for refining entity recognition results according to s Parameters: -- `setCaseSensitive`: Whether to perform case-sensitive matching. Default is False. -- `setAllowPunctuationInBetween`: Whether to allow punctuation between prefix/suffix patterns and the entity. Default is True. -- `setDropEmptyChunks`: If True, removes chunks with empty content after applying rules. Default is False. -- `setCaseSensitive`: If True, it is case sensitive while checking the context. Default is False. -- `setMergeOverlapping`: If False, it returns both modified entities and the original entities at the same time. Default is True. +- `caseSensitive`: Whether to perform case-sensitive matching. Default is False. +- `allowPunctuationInBetween`: Whether to allow punctuation between prefix/suffix patterns and the entity. Default is True. +- `allowTokensInBetween`: Whether to allow tokens between prefix/suffix patterns and the entity. Default is False. +- `dropEmptyChunks`: If True, removes chunks with empty content after applying rules. Default is False. +- `mergeOverlapping`: If False, it returns both modified entities and the original entities at the same time. Default is True. - `rules`: The updating rules. Each rule is a dictionary with the following keys: - `entity`: The target entity label to modify. Example: `"AGE"`. @@ -38,9 +38,8 @@ Parameters: Example: `["\\b(old|young)\\b"]` matches words like "old" or "young" as suffixes. - `replaceEntity`: Optional string specifying the new entity label to replace with the target entity label. Example: `"MODIFIED_AGE"` replaces `"AGE"` with `"MODIFIED_AGE"` in matching cases. - - `mode`: Specifies the operational mode for the rules. - Possible values depend on the use case (e.g., `"include"`, `"exclude"`). - Default: `"include"` + - `mode`: Specifies the operational mode for the rules. Options: `include`, `exclude`, or `replace_label_only`. Default is `include`. + {%- endcapture -%} {%- capture model_input_anno -%} @@ -101,7 +100,6 @@ rules = [ { "replaceEntity" : "Modified_Date", "mode" : "include" } - ] contextual_entity_ruler = medical.ContextualEntityRuler() \ diff --git a/en/licensed_annotator_entries/DeIdentification.md b/en/licensed_annotator_entries/DeIdentification.md index 377bb03e95..545d90d58b 100644 --- a/en/licensed_annotator_entries/DeIdentification.md +++ b/en/licensed_annotator_entries/DeIdentification.md @@ -123,6 +123,10 @@ If True, the month will remain unchanged during the obfuscation process. If False, the month will be modified along with the year and day. Default: False. +- `keepTextSizeForObfuscation` : Whether to keep the text length same obfuscating entities. If `True`, the output text will remain the same if a same length fake is available, otherwise length might vary. + +- `fakerLengthOffset` : It specifies how much length deviation is accepted in obfuscation, with `keepTextSizeForObfuscation` enabled. It must be greater than 0. + To create a configured DeIdentificationModel, please see the example of DeIdentification. {%- endcapture -%} diff --git a/en/licensed_annotator_entries/FewShotAssertionClassifier.md b/en/licensed_annotator_entries/FewShotAssertionClassifier.md index dc2cbb00e6..f0b3fb813e 100644 --- a/en/licensed_annotator_entries/FewShotAssertionClassifier.md +++ b/en/licensed_annotator_entries/FewShotAssertionClassifier.md @@ -16,6 +16,9 @@ Parameters: - `batchSize` *(Int)*: Batch size - `caseSensitive` *(Bool)*: Whether the classifier is sensitive to text casing - `maxSentenceLength` *(Int)*: The maximum length of the input text +- `blackList` *(list[str])*: If defined, list of entities to ignore. The rest will be processed. +- `whiteList` *(list[str])*: If defined, list of entities to process. The rest will be ignored. Do not include IOB prefix on labels. +- `caseSensitive` *(Bool)*: Determines whether the definitions of the white listed and black listed entities are case sensitive. Default: True. {%- endcapture -%} diff --git a/feed.xml b/feed.xml index 1c2da3d492..f2906965e9 100644 --- a/feed.xml +++ b/feed.xml @@ -1,4 +1,4 @@ -Jekyll2025-01-20T18:46:09+00:00/feed.xmlSpark NLPHigh Performance NLP with Apache Spark +Jekyll2025-01-20T18:53:47+00:00/feed.xmlSpark NLPHigh Performance NLP with Apache Spark {"type"=>nil, "name"=>nil, "url"=>nil, "avatar"=>nil, "bio"=>nil, "email"=>nil, "facebook"=>nil, "twitter"=>nil, "weibo"=>nil, "googleplus"=>nil, "telegram"=>nil, "medium"=>nil, "zhihu"=>nil, "douban"=>nil, "linkedin"=>nil, "github"=>nil, "npm"=>nil}Clinical Deidentification Pipeline (Document Wise - Benchmark)2025-01-16T00:00:00+00:002025-01-16T00:00:00+00:00/2025/01/16/clinical_deidentification_docwise_benchmark_en## Description This pipeline can be used to deidentify PHI information from medical texts. The PHI information will be masked and obfuscated in the resulting text. The pipeline can mask and obfuscate `NAME`, `IDNUM`, `CONTACT`, `LOCATION`, `AGE`, `DATE` entities. diff --git a/sitemap.xml b/sitemap.xml index 6f5aa2ad2d..49430fc361 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -19355,4670 +19355,4670 @@ /assets/plugins/elegant_font/css/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-match-height/test.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/demo/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/demo/index.old.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/ElemMaxY-compat.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/ElemMaxY-quirks.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-compat.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-quirks.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-to-iframe-compat.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-to-iframe-quirks.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-with-iframe-compat.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/WinMaxY-with-iframe-quirks.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/jquery-scrollTo/tests/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/lightbox/examples/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/lightbox/examples/remote/page1.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /assets/plugins/lightbox/examples/remote/page2.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /contribute.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /footer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /header.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /license.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/AnnotationMerger$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/AnnotationMerger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/Doc2ChunkInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/Doc2ChunkInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/FeaturesAssembler$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/FeaturesAssembler.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/Router$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/Router.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/annotator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/assertion/AssertionDLApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/assertion/AssertionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/assertion/AssertionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/deid/FinanceDocumentHashCoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/ChunkMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/ChunkMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/ChunkMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/DocMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/DocMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/DocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/ReadablePretrainedDocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/SentenceEntityResolverApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/SentenceEntityResolverModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/SentenceEntityResolverModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/chunk_classification/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/relation_extraction/RelationExtractionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/relation_extraction/RelationExtractionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/relation_extraction/ZeroShotRelationExtractionModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/relation_extraction/ZeroShotRelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/graph/relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceBertForSequenceClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceBertForSequenceClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceClassifierDLApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceClassifierDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceClassifierDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceDocumentMLClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceDocumentMLClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceDocumentMLClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceFewShotClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceFewShotClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceFewShotClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/FinanceFewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/ReadFinanceBertForSequenceClassificationTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/ReadablePretrainedFinanceBertForSequenceModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceEncoderDecoder$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceEncoderDecoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceNerQuestionGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceQuestionAnswering$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceQuestionAnswering.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceSummarizer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceSummarizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceTextGenerator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/FinanceTextGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/sequence_generation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceBertForTokenClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceBertForTokenClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceNerApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceNerApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/FinanceNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ReadFinanceBertForTokenTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ReadZeroShotNerTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ReadablePretrainedFinanceBertForTokenModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ReadablePretrainedZeroShotNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ZeroShotNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ZeroShotNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/finance/token_classification/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/assertion/AssertionDLApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/assertion/AssertionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/assertion/AssertionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/ChunkMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/ChunkMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/ChunkMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/DocMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/DocMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/DocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/ReadablePretrainedDocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/SentenceEntityResolverApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/SentenceEntityResolverModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/SentenceEntityResolverModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/chunk_classification/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/deid/LegalDocumentHashCoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/relation_extraction/RelationExtractionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/relation_extraction/RelationExtractionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/relation_extraction/ZeroShotRelationExtractionModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/relation_extraction/ZeroShotRelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/graph/relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalBertForSequenceClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalBertForSequenceClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalClassifierDLApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalClassifierDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalClassifierDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalDocumentMLClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalDocumentMLClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalDocumentMLClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalFewShotClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalFewShotClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalFewShotClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/LegalFewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/ReadLegalBertForSequenceClassificationTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/ReadablePretrainedLegalBertForSequenceModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalEncoderDecoder$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalEncoderDecoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalNerQuestionGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalQuestionAnswering$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalQuestionAnswering.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalSummarizer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalSummarizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalTextGenerator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/LegalTextGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/sequence_generation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalBertForTokenClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalBertForTokenClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalNerApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalNerApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/LegalNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ReadLegalBertForTokenTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ReadZeroShotNerTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ReadablePretrainedLegalBertForTokenModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ReadablePretrainedZeroShotNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ZeroShotNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ZeroShotNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/legal/token_classification/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/EarlyStopping.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/MedicalBertClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/T5MedicalEncoderDecoder$DecoderProcessor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/T5MedicalEncoderDecoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/gguf/LLMLoader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/gguf/LLMLoaderInferenceParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/gguf/MedicalGGUFWrapper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/gguf/MedicalGGUFWrapper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/gguf/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/AgeSexV2$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/AgeSexV6$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/E2118P1M$$SeqHelper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/E2118P1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/E2118P1P$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/FnMaps.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngine$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngine.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineDummy.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineESRDV21Y19$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Combined$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y17$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y18$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y19$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y20$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y21$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV22Y22$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV23$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV23Combined$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV23Y18$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV23Y19$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Combined$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y17$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y18$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y19$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y20$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y21$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV24Y22$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV28Combined$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCEngineV28Y24$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCFactory$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/HCCUtil.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/NoSuchVersionException.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/RxHCC05Dummy.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/RxHCC08Dummy.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/SexMap.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2218O1M$$SeqHelper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2218O1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2218O1P$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V22I0ED2$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2318P1M$$SeqHelper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2318P1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2419P1M$$SeqHelper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2419P1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2823T2M$$SeqHelper.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V2823T2M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/V28IOED1$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/AgeSexV4$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/R0523P1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/R05IOD3$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/R0823T1M$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/R08I0ED1$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCC.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV05.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV05Y20$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV05Y21$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV05Y22$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV05Y23$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV08.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV08Y22$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxHCCV08Y23$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxhccFnMaps.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxhccParams$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/RxhccRiskScoreMapper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/rxhcc/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/hcc/utils$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/InternalReadOnnxModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/MPNetSetFitTokenizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/ModelArchitectures$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/OnnxGliner.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/OnnxMedicalBertClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/OnnxMedicalEncoderDecoderT5.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/OnnxSetFitClassifier.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/OnnxSetFitClassifierHead.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/SetFitTokenizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/Utils$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/onnx/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/HeapSelect.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/JSerializableKDTree.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/KNNSearch.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/Math.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/NearestNeighbourSearch.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/Neighbour.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/RNNSearch.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/Recipe.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/SerializableKDTree.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/search/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/AssertionBatch.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/AssertionDatasetEncoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/MedicalClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/MedicalNerDatasetEncoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/MedicalTensorFLowClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/MedicalTensorflowBertClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/MedicalTensorflowDistilBertClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowAssertion.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowBertRE.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowBioGPT.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowGenericClassifier.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowMedicalNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/TensorflowZeroShotNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/Types$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/sign/ModelSIgnatureConstantsInternal$$MedicalInputIds$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/sign/ModelSIgnatureConstantsInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/sign/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/ActionInfo.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/Beam.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/DatabaseDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/HypMeta.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/PreprocessedDB.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/SchemaJSON.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/Sem2SQL.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/Edge.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/Graph.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/Node.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/Utils$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/Utils.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/A.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Action.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/C.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Filter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/N.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Order.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Root.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Root1.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Sel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/Sup.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/T.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/action/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/ml/tensorflow/text2sql/rule/lf.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/AnnotationMerger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/Doc2ChunkInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/Doc2ChunkInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/FeaturesAssembler.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/Router$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/Router.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/Chunk2Token.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DocumentFiltererByClassifier$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DocumentFiltererByClassifier.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DocumentFiltererByNER$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DocumentFiltererByNER.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DrugNormalizer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/DrugNormalizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/Flattener$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/Flattener.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/MultiChunk2Doc$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/MultiChunk2Doc.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/AssertionChunkConverter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/AssertionChunkConverter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/Datapoint.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/FewShotAssertionSentenceConverter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/FewShotAssertionSentenceConverter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/context/CALCULATION_OPTIONS$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/context/ContextualAssertion$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/context/ContextualAssertion.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/context/ReadablePretrainedContextualAssertion.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/context/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/AssertionDLApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/AssertionDLApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/AssertionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/AssertionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/AssertionDLParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/ReadablePretrainedAssertionDL.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/ReadsAssertionGraph.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/AssertionLogRegApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/AssertionLogRegApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/AssertionLogRegModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/AssertionLogRegModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/Datapoint.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/NegexDatasetReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/ReadablePretrainedAssertionLogReg.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/Windowing$VectorizedChunk.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/Windowing.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/logreg/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/merger/AssertionMerger$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/merger/AssertionMerger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/merger/AssertionOrderingFeatures$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/merger/AssertionPrioritizationParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/assertion/merger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/AssertionFilterer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/AssertionFilterer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkConverter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkConverter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkFilterer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkFilterer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkFiltererApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkFiltererApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkKeyPhraseExtraction$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkKeyPhraseExtraction.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkMapperFilterer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkMapperFilterer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkSentenceSplitter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ChunkSentenceSplitter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/DocMapperApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/DocMapperModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/DocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/Mapper2Chunk$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/Mapper2Chunk.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ReadChunkKeyPhraseExtractionTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ReadablePretrainedChunkKeyPhraseExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ReadablePretrainedChunkMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ReadablePretrainedDocMapperModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/chunkmapper/Mapping.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/chunkmapper/Mappings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/chunkmapper/Relation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/chunkmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/AvailableDroppingOperators$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/AvailableScalingModes$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/AvailableSpecialRelations$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/AvailableTextDistanceFunctions$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/ChunkMapperFuzzyMatchingParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/chunker/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentLogRegClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentLogRegClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentLogRegClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentMLClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentMLClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentMLClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/DocumentMLClassifierParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotAssertionClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotAssertionClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotAssertionClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotAssertionClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/FewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericLogRegClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericLogRegClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericLogRegClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericLogRegClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericSVMClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericSVMClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericSVMClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/GenericSVMClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/LargeFewShotClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/LargeFewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalBertForSequenceClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalBertForSequenceClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalBertForTokenClassifier$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalBertForTokenClassifier.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalDistilBertForSequenceClassification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/MedicalDistilBertForSequenceClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadBertForTokenTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadDistilBertForSequenceTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadFewShotAssertionClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadLargeFewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadMedicalBertForSequenceClassification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedBertForSequenceModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedBertForTokenModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedDistilBertForSequenceModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedDocumentLogRegClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedDocumentMLClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedFewShotAssertionClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ReadablePretrainedLargeFewShotClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextRules.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityFilterer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityFilterer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityRuler$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityRuler.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityRulerRules$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualEntityRulerRules.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualFilteringRules$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualFilteringRules.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualParserApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualParserApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualParserModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualParserModel$MatchedToken.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ContextualParserModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/Dictionary.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/EntityDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/MatchExceptions.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/MatchPrefixSuffix.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/MatchRegex.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/MatchRegexPerSentence.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/MatchedToken.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ReadablePretrainedContextualParser.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/context/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/datasets/AssertionAnnotationAndText.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/datasets/AssertionAnnotationWithLabel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/datasets/AssertionAnnotationWithLabel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/datasets/IndexedChunk.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/datasets/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/BaseDeidParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DateChunkObfuscator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentificationModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentificationModel$StringReplacement.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentificationModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeIdentificationParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DefaultRegex$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeidApproachParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DeidModelParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DocumentHashCoder$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/DocumentHashCoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/Language$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/LightDeIdentification$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/LightDeIdentification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/LightDeIdentificationParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/MySentnece.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/NameChunkObfuscator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/NameChunkObfuscatorApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/NameChunkObfuscatorParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/Obfuscator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ObfuscatorAnnotatorApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ObfuscatorAnnotatorApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ObfuscatorAnnotatorModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ObfuscatorParams$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ObfuscatorParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ReIdentification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ReadablePretrainedDeId.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ReadsFeatures.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/Replacer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/Replacer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/SentenceMaxException.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/StructuredDeid.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/StructuredDeidentification.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/TextToDocumentColumns.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Age.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/ArabicUtils$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Company.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Contact.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Addreses$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Cities$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Countries$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Doctors$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Emails$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$FirstName$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Hospitals$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Names$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Professions$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Sex$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$States$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Streets$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Surnames$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$$Usernames$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Faker$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/FakerConfig$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/FakerConfigDefaults$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Finance.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Gender$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/ID.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Legal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Location.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Person.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/Profession.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/RandomsElements.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/SelectionUtil$$SeqImprovements.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/SelectionUtil$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/URL.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/faker/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/NerDisambiguator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/NerDisambiguator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/NerDisambiguatorModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/NerDisambiguatorModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/ReadDisambiguator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/ReadPretrainedNerDisambiguator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/SimpleDisambiguationPipeline.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/ContextMappingsSchema$$Record.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/ContextMappingsSchema$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$DisambiguatedSentence.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$Disambiguation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$DisambiguationResult.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$Position.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$RawDisambiguationResult.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$Sentence.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$$SentenceEmbeddingWithType.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/DisambiguationDataTypes$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/LinalgAliases$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/datatypes/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/linalg/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/linalg/package$$ManifoldTopologyBreeze$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/AnnotationLogic.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/Knowledge.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/KvKnowledgeExtractor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/Mappings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/PredictionLogic$Prediction.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/PredictionLogic.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/EmbeddingsExtractor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/PoolingLogic.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/BowPoolingExtractor$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/BowPoolingExtractor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/PoolingLogicBase.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/SentenceEmbeddingsExtractor$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/SentenceEmbeddingsExtractor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/SwitchableEmbeddingsExtractor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/impl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/logic/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/CategoryToDomainMapping$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/DisambiguatorModelParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/SwitchableSentenceEmbeddings$$SentenceEmbeddingColumns.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/SwitchableSentenceEmbeddings$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/linalg/CosineMetrics.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/linalg/CosineMetricsBreezeImpl.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/linalg/Topology.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/linalg/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/KryoSerializer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/Reader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/RocksDbReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/StorageDisambiguatorHelper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/StorageLocatorDisambiguator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/StorageLocatorDisambiguator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/disambiguation/util/read/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/AverageEmbeddings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/BertSentenceChunkEmbeddings$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/BertSentenceChunkEmbeddings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/EntityChunkEmbeddings$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/EntityChunkEmbeddings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ExtractiveSummarization$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ExtractiveSummarization.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ReadBertSentenceChunksTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ReadEntityChunkEmbeddingsTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ReadablePretrainedBertSentenceChunksModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ReadablePretrainedEntityChunkEmbeddings.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/AhoCorasickAutomatonInternal$Node.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/AhoCorasickAutomatonInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/EntityRulerInternalApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/EntityRulerInternalModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/EntityRulerInternalModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/ReadablePretrainedEntityRulerInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/er/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierDataEncoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/GenericClassifierParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/ReadablePretrainedGenericClassifier.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/ReadsGenericClassifierGraph.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/generic_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/ReadablePretrainedTextMatcherInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/TextMatcherInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/TextMatcherInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/TextMatcherInternalModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/TextMatcherInternalModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/matcher/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/Asc$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/ChunkMergeApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/ChunkMergeModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/ChunkMergeModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/Desc$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/Order.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/REChunkMerger$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/REChunkMerger$MetadataKey.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/REChunkMerger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/ReadablePretrainedChunkMerge.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/AvailableOrderingFeatures$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/AvailableSelectionStrategies$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/MergeCommonParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/MergeFeatureParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/MergePrioritizationParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/MergeResourceParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/merge/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/GlinerConfig.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/GlinerData.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/GlinerDataProcessor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/IOBTagger$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/IOBTagger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/MedicalNerApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/MedicalNerApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/MedicalNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/MedicalNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/MedicalNerParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NamedEntityConfidence.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerChunker$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerChunker.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerConverterInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerConverterInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerConverterInternalModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerConverterInternalModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerTaggedInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerTagsEncodingInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerTemplateRenderModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/NerTemplateRenderModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/PretrainedZeroShotNER$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/PretrainedZeroShotNER.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadPretrainedZeroShotNER.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadZeroShotNerTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadablePretrainedMedicalNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadablePretrainedPretrainedZeroShotNER.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadablePretrainedZeroShotNer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ReadsMedicalNerGraph.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/WithMedicalNerGraphResolver.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ZeroShotNerModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ZeroShotNerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/normalizer/DateHelper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/normalizer/DateNormalizer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/normalizer/DateNormalizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/normalizer/MyCalendar.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/normalizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/FilteringParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/HandleExceptionParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/ResetSentenceIndicesParam.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/SourceTrackingMetadataParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/WhiteAndBlackListParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/ClassificationSchema.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/ConverterSchema$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/ConverterSchema.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/DeIdentificationSchema.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/JsonConverterDict.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/ResolutionSchema.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/StructuredJsonConverter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/StructuredJsonConverter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/UniqueIdGenerator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/GPTGenerationParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/MedicalQuestionAnswering$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/MedicalQuestionAnswering.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/NerQAGenarator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/NerQuestionGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/ReadMedicalQuestionAnsweringModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/ReadablePretrainedMedicalQuestionAnsweringModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/qa/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/CONVERTER_FALLBACK_OPTIONS$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/CRITERIA_OPERATORS$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/ContextSplitAssembler$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/ContextSplitAssembler.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/FIELD_TYPE_OPTIONS$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/MetadataCriteria$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/MetadataCriteria.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/SORTBY_FILTERBY_OPTIONS$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/VectorDBPostProcessor$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/VectorDBPostProcessor.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/rag/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/BertREConfig.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/DLRelationInstance.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/GenericREModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/PosologyREModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/REDataEncoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/REFeatureGenerator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RENerChunksFilter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RENerChunksFilter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ReadRelationExtractionDLModelTensorflowModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ReadZeroShotRelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ReadablePretrainedRelationExtractionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ReadablePretrainedZeroShotRelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationDirection$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationEncoding.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionApproach$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionDLModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionDLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/RelationInstance.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ZeroShotRelationExtractionModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ZeroShotRelationExtractionModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/re/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/ReadablePretrainedRegexMatcherInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/RegexMatcherInternal$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/RegexMatcherInternal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/RegexMatcherInternalModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/RegexMatcherInternalModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/regex/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/ConfidenceFunction$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/DistanceFunction$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/DistanceResult.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/JDataReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/JTreeComponent.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/JTreeData.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/JTreeReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/JTreeWriter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/PoolingStrategy$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/ReadablePretrainedSentenceEntityResolver.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/Resolution2Chunk$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/Resolution2Chunk.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/ResolverMerger$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/ResolverMerger.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/SentenceEntityResolverApproach.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/SentenceEntityResolverModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/SentenceEntityResolverModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/TreeData.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/params/ResolverParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/params/SentenceResolverParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/util/StringFunctions.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/util/StructFeature_HadoopFix$BoolToOption.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/util/StructFeature_HadoopFix$ToLocalPath.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/util/StructFeature_HadoopFix.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/resolution/util/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalEncoderDecoder$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalEncoderDecoder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalLLM$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalLLM.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalSummarizer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalSummarizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalTextGenerator$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/MedicalTextGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ModelTypes$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadMedicalEncoderDecoderModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadMedicalLLM.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadMedicalMedicalTextGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadMedicalText2SQLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadablePretrainedMedicalLLM.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadablePretrainedMedicalSummarizerModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadablePretrainedMedicalTextGenerator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ReadablePretrainedText2SQLModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/Text2SQL$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/Text2SQL.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/seq2seq/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/DocumentSplitterParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/Entity.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/InternalDocumentSplitter$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/InternalDocumentSplitter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/ReadablePretrainedInternalDocumentSplitter.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/splitter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/tokenizer/BioGPTTokenizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/tokenizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/windowed/WindowedSentenceModel$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/windowed/WindowedSentenceModel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/windowed/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/windowed/params/WindowedParams.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/annotators/windowed/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/BaseChunk.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/BaseToken.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/EvaluationMetrics$TpFnFp.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/EvaluationMetrics.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/EvaluationModes$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/HasBeginEnd.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/POSEvaluation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/ner/NerCrfEvaluation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/ner/NerDLEvaluation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/ner/NerDLMetrics.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/resolution/EvalEntityResolver.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/spell/NorvigSpellEvaluation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/spell/SymSpellEvaluation.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/spell/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/util/GoldTokenizer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/util/LoggingData.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/util/TagsMetrics$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/util/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/eval/utils$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/AnnotatorType$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/HCC$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/HasSafeAnnotate.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/HasSafeBatchAnnotate.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/PythonRiskAdjustmentUtil$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/RiskAdjustmentUtil$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/SparkNLP$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/functions$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/jsl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/CustomLabels$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/CustomLabels.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/DictionaryParam.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/EntityWeights$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/EntityWeights.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/RelationalCategories$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/RelationalCategories.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/SerializedDictionaryParam.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/TargetEntities$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/TargetEntities.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/param/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/pretrained/InternalResourceDownloader$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/pretrained/InternalsPythonResourceDownloader$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/pretrained/InternalsS3ResourceDownloader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/pretrained/ThreadSafeDownloader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/pretrained/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationToolJsonReader$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationToolJsonReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationValue.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationValueChoices.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AnnotationValueLabel.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/AugmentationModes$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/CantemistReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/CasingFunctions$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/CodiEspReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/CompletionDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/CreatorPipeline$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/NerAnnotationDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/RelAnnotationDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/SynonymAugmentationUMLS.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/SynonymSources$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/TaskDataDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/TaskDefinition.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/TaskReader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/TokenRow.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/UDFHelper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/nlp/training/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/storage/JSLDatabase$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/storage/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/Compatibility.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/HadoopOperations$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/HashUtil$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/InternalConfigHelper$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/InternalS3ResourceDownloader.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/JSLBuild$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/LibrarySettings$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/ModelTracer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/PythonUpdateModels$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/ResourceMetadataFolder.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/RunTranspiledCode$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/UpdateModels$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/WithStart.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/distances/StringDistances$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/distances/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/external/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/external/wmd4j/Cosine$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/external/wmd4j/Euclidean$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/external/wmd4j/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/start$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/ColognePhoneticKeyer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/FingerprintKeyer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/Keyer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/Metaphone3.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/Metaphone3Keyer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/NGramFingerprintKeyer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/StringDistances$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/strings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/JavaPipelineStage.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/PipelineStage.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/PipelineTracer$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/PipelineTracer$OptionStringRich.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/PipelineTracer$StringRich.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/PipelineTracer.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/StageField.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/StageFieldType$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/tracer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/Cosine$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/Euclidean$.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/FrequencyVector.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/SparkNLPWordVectors.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/WordMovers.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/WordVectors.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/emd/EarthMovers.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/emd/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/com/johnsnowlabs/util/wmd4j/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/genindex.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/getting_started/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/py-modindex.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl.annotator.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl.finance.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl.legal.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl.utils.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/alab/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/annotation_merger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/assertionDL/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/assertion_chunk_converter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/assertion_dl_reg/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/assertion_merger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/contextual_assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/fewshot_assertion_sentence_converter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunk2_token/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/assertion_filterer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunk_converter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunk_key_phrase_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunk_sentence_splitter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunker_filterer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunkmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/chunkmapper_filterer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/docmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/chunker/mapper2_chunk/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/document_log_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/document_ml_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/few_shot_assertion_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/few_shot_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/generic_log_reg_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/generic_svm_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/large_few_shot_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/medical_bert_for_sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/medical_bert_for_token_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/classification/medical_distilbert_for_sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/context/contextual_entity_filterer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/context/contextual_entity_ruler/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/context/contextual_parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/context/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/deIdentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/deidentication_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/doccument_hashcoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/light_deIdentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/name_obfuscator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/reIdentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/deid/replacer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/disambiguation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/disambiguation/ner_disambiguator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/doc2_chunk_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/document_filterer_by_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/document_filterer_by_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/embeddings/average_embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/embeddings/bert_sentence_embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/embeddings/entity_chunk_embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/embeddings/extractive_summarization/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/embeddings/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/er/entity_ruler_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/er/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/feature_assembler/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/filtering_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/flattener/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/generic_classifier/generic_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/generic_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/handle_exception_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/matcher/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/matcher/text_matcher_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/medical_llm/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/medical_llm/medical_llm/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/merge/chunk_merge/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/merge/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/merge/re_chunk_merger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/multi_chunk2_doc/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/iob_tagger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/medical_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/ner_chunker/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/ner_converter_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/ner_template_render/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/pretrained_zero_shot_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/ner/zero_shot_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/normalizer/date_normalizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/normalizer/drug_normalizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/normalizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/params/reset_sentence_indices_param/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/parser/structured_json_converter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/qa/beam_search_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/qa/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/qa/medical_qa/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/qa/qa_ner_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/rag/context_split_assembler/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/rag/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/rag/vectordb_post_processor/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/re/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/re/relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/re/relation_extraction_dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/re/relation_ner_chunk_filter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/re/zero_shot_relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/regex/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/regex/regex_matcher/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/resolution/resolver_merger/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/resolution/sentence_entity_resolver/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/resolution2_chunk/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/router/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/seq2seq/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/seq2seq/medical_encoder_decoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/seq2seq/medical_summarizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/seq2seq/medical_text_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/seq2seq/text2sql/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/source_tracking_metadata_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/splitter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/splitter/internal_document_splitter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/tf_graph_builder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/white_black_list_params/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/windowed/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/annotator/windowed/windowed_sentence/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/base/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/common/annotator_approach_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/common/annotator_model_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/common/annotator_properties_internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/common/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/compatibility/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/custom_transformer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/deidentification_module/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/eval/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/assertion/assertionDL/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/deid/deIdentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/deid/document_hashcoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/resolution/chunkmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/resolution/docmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/chunk_classification/resolution/sentence_entity_resolver/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/graph/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/graph/relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/graph/relation_extraction/relation_extraction_dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/graph/relation_extraction/zero_shot_relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_classification/finance_bert_for_sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_classification/finance_classifier_dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_classification/finance_document_ml_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_classification/finance_few_shot_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/finance_encoder_decoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/finance_qa/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/finance_summarizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/finance_text_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/sequence_generation/qa_ner_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/token_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/token_classification/ner/finance_bert_for_token_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/token_classification/ner/finance_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/token_classification/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/finance/token_classification/ner/zero_shot_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/functions/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/internal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/assertion/assertionDL/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/assertion/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/deid/deIdentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/deid/document_hashcoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/deid/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/resolution/chunkmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/resolution/docmapper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/resolution/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/chunk_classification/resolution/sentence_entity_resolver/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/graph/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/graph/relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/graph/relation_extraction/relation_extraction_dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/graph/relation_extraction/zero_shot_relation_extraction/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_classification/legal_bert_for_sequence_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_classification/legal_classifier_dl/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_classification/legal_document_ml_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_classification/legal_few_shot_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/legal_encoder_decoder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/legal_qa/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/legal_summarizer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/legal_text_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/sequence_generation/qa_ner_generator/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/token_classification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/token_classification/ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/token_classification/ner/legal_bert_for_token_classifier/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/token_classification/ner/legal_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/legal/token_classification/ner/zero_shot_ner/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/llm/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/llm/llm_loader/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/modelTracer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/pipeline_output_parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/pipeline_tracer/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/pretrained/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/structured_deidentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/text_to_documents_columns/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/training/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/training_log_parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/builder/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/class_names/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/converter/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/externalSources/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/nlu_2_python/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/python_2_scala/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/source_loader/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/transpiler/uploader/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/updateModels/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/util/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/alab_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/conll_parse/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/database_deidentification/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/deidentification_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/imports/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/java_helper/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/licensed_annotator_type/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/log_parse/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/ner_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/ocr_nlp_processor/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/ocr_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/risk_adjustment_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/run_transpiled_code/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/training_log_parser_utils/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/autosummary/sparknlp_jsl/utils/visualner_annotations_parser/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/reference/ -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/search.html -2025-01-20T18:44:21+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/python/static/webpack-macros.html -2025-01-20T18:44:22+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/scala/ -2025-01-20T18:44:22+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/scala/tools/ -2025-01-20T18:44:22+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/scala/tools/nsc/ -2025-01-20T18:44:22+00:00 +2025-01-20T18:51:51+00:00 /licensed/api/scala/tools/nsc/interpreter/ -2025-01-20T18:44:22+00:00 +2025-01-20T18:51:51+00:00