Recent Releases of ktrain
ktrain - v0.41.3
0.41.3 (2024-04-05)
new:
- N/A
changed
- N/A
fixed:
- Removed
tf_kerasas dependencies due to issues in varioius dependencies related to TF 2.16 and allow TF to prompt user for it (#528) - Removed auto-setting
TF_USE_LEGACY_KERAS, as it causes problems intensorflow<2.16(#528) - Unpin
transformersdue to incompatibilites with different versions of TensorFlow.
- Jupyter Notebook
Published by amaiya almost 2 years ago
ktrain - v0.41.0
0.41.0 (2024-02-20)
new:
- N/A
changed
- Breaking Change: Removed the
ktrain.text.qa.generative_qamodule. Users should use our OnPrem.LLM for generative question-answering (#522)
fixed:
- use arrays in
TextPredictordue to possible issues withtf.Dataset(#521)
- Jupyter Notebook
Published by amaiya about 2 years ago
ktrain - v0.38.0
0.38.0 (2023-09-05)
new:
- N/A
changed
- Breaking Change: The
generative_ai.LLMclass replacesgenerative_ai.GenerativeAIis now powered by our OnPrem.LLM package (see example notebook). GenerativeQAnow recomendslangchain==0.0.240
fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 2 years ago
ktrain - v0.37.2
0.37.2 (2023-06-14)
new:
- N/A
changed
text.models,vision.models, andtabular.modelsnow all automatically set metrics to usebinary_accuracyfor multilabel problems (#500)
fixed:
- fix
validateto support multilabel classification problems (#498) - add a warning to
TransformerPreprocessor.get_classifierto usebinary_accuracyfor multilabel problems (#498)
- Jupyter Notebook
Published by amaiya over 2 years ago
ktrain - v0.37.0
0.37.0 (2023-05-11)
new:
- Support for Generative Question-Answering powered by OpenAI models, LangChain, and Paper-QA. Ask questions to any set of documents and get back answers with citations to where the answer was found in your documents.
changed
- N/A
fixed:
- N/A
- Jupyter Notebook
Published by amaiya almost 3 years ago
ktrain - v0.33.3
0.33.3 (2023-03-17)
new:
- N/A
changed
- Added
exclude_unigramsargument totext.kwmodule and support unigram extraction whennoun_phrasesis selected
fixed:
- explicitly set
num_beamsandearly_stoppingforgenerateinktrain.text.translation.coreto prevent errors intransformers>=4.26.0
- Jupyter Notebook
Published by amaiya almost 3 years ago
ktrain - v0.33.0
0.33.0 (2023-01-14)
new:
- Support for the latest version of
transformers.
changed
- Removed pin to
transformers==4.17
fixed:
- Changed
numpy.floatandnumpy.inttonumpy.float64andnumpy.int_respectively, inktrain.utils(#474) - Removed
pandasdeprecation warnings fromktrain.tabular.prepreprocessor(#475) - Ensure
use_token_type_idsalways exists inTransformerPreprocessorobjects to ensure backwards compatibility - Removed reference to
networkx.info, as it was removed innetworkx>=3
- Jupyter Notebook
Published by amaiya about 3 years ago
ktrain - v0.32.3
0.32.3 (2022-12-12)
new:
- N/A
changed
- N/A
fixed:
- Changed NMF to accept optional parameters
nmf_alpha_Wandnmf_alpha_Hbased on changes inscikit-learn==1.2.0. - Change
ktrain.utilsto check for TensorFlow before doing a version check, so that ktrain can be imported without TensorFlow being installed.
- Jupyter Notebook
Published by amaiya about 3 years ago
ktrain - v0.32.1
0.32.1 (2022-12-11)
new:
- N/A
changed
- N/A
fixed:
- In TensorFlow 2.11, the
tf.optimizers.Optimizerbase class points the new keras optimizer that seems to have problems. Users should use legacy optimizers intf.keras.optimizers.legacywith ktrain (which evidently will never be deleted). This means that, in TF 2.11, supplying a string representation of an optimizer like"adam"tomodel.compileuses the new optimizer instead of the legacy optimizers. In these cases, ktrain will issue a warning and automatically recompile the model with the defaulttf.keras.optimizers.legacy.Adamoptimizer.
- Jupyter Notebook
Published by amaiya about 3 years ago
ktrain - v0.32.0
0.32.0 (2022-12-08)
new:
- Support for TensorFlow 2.11. For now, as recommended in the TF release notes, ktrain has been changed to use the legacy optimizers in
tf.keras.optimizers.legacy. This means that, when compiling Keras models, you should supplytf.keras.optimizers.legacy.Adam()instead of the string"adam". - Support for Python 3.10. Changed references from
CountVectorizer.get_field_namestoCountVectorizer.get_field_names_out. Updated supported versions insetup.py.
changed
- N/A
fixed:
- fixed error in docs
- Jupyter Notebook
Published by amaiya about 3 years ago
ktrain - v0.31.4
0.31.4 (2022-08-01)
new:
- N/A
changed
TextPredictor.explainandImagePredictor.explainnow use a different fork ofeli5:pip install https://github.com/amaiya/eli5-tf/archive/refs/heads/master.zip
fixed:
- Fixed
loss_fn_from_modelfunction to work withDISABLE_V2_BEHAVIORproperly TextPredictor.explainandImagePredictor.explainnow work withtensorflow>=2.9andscipy>=1.9(due to neweli5-tffork -- see above)
- Jupyter Notebook
Published by amaiya over 3 years ago
ktrain - v0.31.2
0.31.2 (2022-05-20)
new:
- N/A
changed
- added
truncate_toargument (default:5000) andmincharsargument (default:3) argument toKeywordExtractor.extract_keywordsmethod. - added
score_byargument toKeywordExtractor.extract_keywords. Default isfreqpos, which means keywords are now ranked by a combination of frequency and position in document.
fixed:
- N/A
- Jupyter Notebook
Published by amaiya almost 4 years ago
ktrain - v0.31.0
0.31.0 (2022-05-07)
new:
- The
text.ner.models.sequence_taggernow supports word embeddings from non-BERT transformer models (e.g.,roberta-base,codebert). Thanks to @Niekvdplas. - Custom tokenization can now be used in sequence-tagging even when using transformer word embeddings. See
custom_tokenizerargument toNERPredictor.predict.
changed
- [breaking change] In the
text.ner.models.sequence_taggerfunction, thebilstm-bertmodel is now calledbilstm-transformerand thebert_modelparameter has been renamed totransformer_model. - [breaking change] The
syntokpackage is now used as the default tokenizer forNERPredictor(sequence-tagging prediction). To use the tokenization scheme from older versions of ktrain, you can import thereandstringpackages and supply this function to thecustom_tokenizerargument:lambda s: re.compile(f"([{string.punctuation}“”¨«»®´·º½¾¿¡§£₤‘’])").sub(r" \1 ", s).split(). - Code base was reformatted using black and isort
- ktrain now supports TIKA for text extraction in the
text.textractor.TextExtractorpackage with theuse_tika=Trueargument as default. To use the old-style text extraction based on thetextractpackage, you can supplyuse_tika=FalsetoTextExtractor. - removed warning about sentence pair classification to avoid confusion
fixed:
- N/A
- Jupyter Notebook
Published by amaiya almost 4 years ago
ktrain - v0.30.0
0.30.0 (2022-03-28)
new:
- ktrain now supports simple, fast, and robust keyphrase extraction with the
ktran.text.kw.KeywordExtractormodule - ktrain now only issues a warning if TensorFlow is not installed, insteading of halting and preventing further use. This means that pre-trained PyTorch models (e.g.,
text.zsl.ZeroShotClassifier) and sklearn models (e.g.,text.eda.TopicModel) in ktrain can now be used without having TensorFlow installed. text.qa.SimpleQAandtext.qa.AnswerExtractornow both support PyTorch with optional quantization (useframework='pt'for PyTorch version)text.zsl.ZeroShotClassifier,text.translation.Translator, andtext.translation.EnglishTranslatorall support aquantizeargument.- pretrained image-captioning and object-detection via
transformersare now supported
changed
- reorganized imports
- localized seqeval
- The
halfparameter totext.translation.Translator, andtext.translation.EnglishTranslatorwas changed toquantizeand now supports both CPU and GPU. -
TFDatasetandSequenceDatasetclasses must not be imported asktrain.dataset.TFDatasetandktrain.dataset.SequenceDataset.
fixed:
- N/A
- Jupyter Notebook
Published by amaiya almost 4 years ago
ktrain - v0.29.3
0.29.3 (2022-03-09)
new:
NERPredictor.predictnow includes areturn_offsetsparameter. If True, the results will include character offsets of predicted entities.
changed
- In
eda.TopicModel, changedlda_max_itertomax_iterandnmf_alphatoalpha - Added
show_countsparameter toTopicModel.get_topicsmethod - Changed
qa.core._process_questiontoqa.core.process_question - In
qa.core, addedremove_english_stopwordsandand_npparameters toprocess_question - The
valleylearning rate suggestion is now returned inlearner.lr_estimateandlearner.lr_plot(whensuggest=Truesupplied tolearner.lr_plot)
fixed:
- save
TransformerEmbeddingmodel, tokenizer, and configuration when savingNERPredictorand resette_modelto facilitate loading NERPredictors with BERT embeddings offline (#423) - switched from
keras2onnxtotf2onnx, which supports newer versions of TensorFlow
- Jupyter Notebook
Published by amaiya almost 4 years ago
ktrain - v0.29.1
0.29.1 (2022-02-08)
new:
- N/A
changed
- pin to
sklearn==0.24.2due to breaking changes. This scikit-learn version change only really affectsTextPredictor.explain. Theeli5fork supporting tf.keras updated for scikit-learn 0.24.2. To usescikit-learn==0.24.2, users must uninstall and re-install theeli5fork with:pip install https://github.com/amaiya/eli5/archive/refs/heads/tfkeras_0_10_1.zip.
fixed:
- N/A
- Jupyter Notebook
Published by amaiya about 4 years ago
ktrain - v0.29.0
0.29.0 (2022-01-28)
new:
- New vision models: added MobileNetV3-Small and EfficientNet. Thanks to @ilos-vigil.
changed
core.Learner.plotnow supports plotting of any value that exists in the trainingHistoryobject (e.g.,maeif previously specified as metric). Thanks to @ilos-vigil.- added
raw_confidenceparameter toQA.askmethod to return raw confidence scores. Thanks to @ilos-vigil.
fixed:
- pin to
transformers==4.10.3due to Issue #398 - pin to
syntok==1.3.3due to bug withsyntok==1.4.1causing paragraph tokenization inqamodule to break - properly suppress TF/CUDA warnings by default
- ensure document fed to
keras_berttokenizer to avoid this issue
- Jupyter Notebook
Published by amaiya about 4 years ago
ktrain - v0.28.0
0.28.0 (2021-10-13)
New:
text.AnswerExtractoris a universal information extractor powered by a Question-Answering module and capable of extracting user-specfied information from texts.text.TextExtractoris a text extraction pipeline (e.g., convert PDFs to plain text)
Changed
- changed transformers pin to
transformers>=4.0.0,<=4.10.3
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 4 years ago
ktrain - v0.26.5
0.26.5 (2021-07-15)
New:
- N/A
Changed
- added
queryparameter toSimpleQA.askso that an alternative query can be used to retrieve contexts from corpus - added
chardetas dependency forstellargraph
Fixed:
- fixed issue with
TopicModel.buildwhenthreshold=None
- Jupyter Notebook
Published by amaiya over 4 years ago
ktrain - v0.26.4
0.26.4 (2021-06-23)
New:
- API documenation index
Changed
- Added warning when a TensorFlow version of selected
transformersmodel is not available and the PyTorch version is being downloaded and converted instead usingfrom_pt=True.
Fixed:
- Fixed
utils.metrics_from_modelto support alternative metrics - Check for AUC
ktrain.utils"inspect" function
- Jupyter Notebook
Published by amaiya over 4 years ago
ktrain - v0.26.3
0.26.3 (2021-05-19)
New:
- N/A
Changed
shallownlp.ner.NER.predictprocesses lists of sentences in batches resulting in faster predictionsbatch_sizeargument added toshallownlp.ner.NER.predict- added
verboseparameter toktrain.text.textutils.extract_copyto optionally see why each skipped document was skipped
Fixed:
- Changed
TextPredictor.saveto save Hugging Face tokenizer files locally to ensure they can be easily reloaded whentext.Transformeris supplied with local path. - For
transformersmodels, thepredictor.preproc.model_namevariable is automatically updated to be newPredictorfolder to avoid having users manually updatemodel_name. Applies when a local path is supplied totext.Transformerand resultantPredictoris moved to new machine.
- Jupyter Notebook
Published by amaiya almost 5 years ago
ktrain - v0.26.0
0.26.0 (2021-03-10)
New:
- Support for transformers 4.0 and above.
Changed
- added
set_tokenizertoTransformerPreprocessor - show error message when original weights cannot be saved (for
reset_weightsmethod)
Fixed:
- cast filename to string before concatenating with suffix in
images_from_csvandimages_from_df(addresses issue #330) - resolved import error for
sklearn>=0.24.0, buteli5still requiressklearn<0.24.0.
- Jupyter Notebook
Published by amaiya almost 5 years ago
ktrain - v0.25.4
0.25.4 (2021-01-26)
New:
- N/A
Changed
- N/A
Fixed:
- fixed problem with
LabelEncodernot properly being stored whentexts_from_dfis invoked - refrain from invoking
maxon empty sequence (#307) - corrected issue with
return_proba=Truein NER predictions (#316)
- Jupyter Notebook
Published by amaiya about 5 years ago
ktrain - v0.25.3
0.25.3 (2020-12-23)
New:
- N/A
Changed
- A
steps_per_epochargument has been added to all*fit*methods that operate on generators - Added
get_tokenizermethods to all instances ofTextPreprocessor
Fixed:
- propogate custom metrics to model when
distilbertis chosen intext_classifierandtext_regression_modelfunctions - pin
scikit-learnto 0.24.0 sue to breaking change
- Jupyter Notebook
Published by amaiya about 5 years ago
ktrain - v0.25.1
0.25.1 (2020-12-02)
New:
- N/A
Changed
- Added
use_dynamic_shapeparameter totext.preprocessor.hf_convert_exampleswhich is set toTruewhen running predictions. This reduces the input length when making predictions, if possible.. - Added warnings to some imports in
imports.pyto allow for slightly lighter-weight deployments - Temporarily pinning to
transformers>=3.1,<4.0due to breaking changes in v4.0.
Fixed:
- Suppress progress bar in
predictor.predictforkeras_bertmodels - Fixed typo causing problems when loading predictor for Inception models
- Fixes to address documented/undocumented breaking changes in
transformers>=4.0. But, temporarily pinning totransformers>=3.1,<4.0for backwards compatibility.
- Jupyter Notebook
Published by amaiya about 5 years ago
ktrain - v0.25.0
0.25.0 (2020-11-08)
New:
- The
SimpleQA.index_from_foldermethod now supports text extraction from many file types including PDFs, MS Word documents, and MS PowerPoint files (i.e., setuse_text_extraction=Trueto use this feature).
Changed
- The default in
SimpleQA.index_from_listandSimpleQA.index_from_folderhas been changed tobreakup_docs=True.
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.23.2
0.23.2 (2020-10-27)
New:
- N/A
Changed
- Use fast tokenizers for the following Hugging Face transformers models: BERT, DistilBERT, and RoBERTa models. This change affects models created with either
text.Transformer(...ortext.text_clasifier('distilbert',..'). BERT models created withtext_classifier('bert',.., which useskeras_bertinstead oftransformers, are not affected by this change.
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.23.0
0.23.0 (2020-10-16)
New:
- Support for upcoming release of TensorFlow 2.4 such as removal of references to obsolete
multi_gpu_model
Changed
- [breaking change]
TopicModel.get_docsnow returns a list of dicts instead of a list of tuples. Each dict has keys:text,doc_id,topic_proba,topic_id. - added
TopicModel.get_document_topic_distribution - added
TopicModel.get_sorted_docsmethod to return all documents sorted by relevance to a giventopic_id
Fixed:
- Changed version check warning in
lr_findto a raised Exception to avoid confusion when warnings from ktrain are suppressed - Pass
verboseparameter tohf_convert_examples
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.22.4
0.22.4 (2020-10-12)
New:
- N/A
Changed
- changed
qa.core.display_answersto make URLs open in new tab
Fixed:
- pin to
seqeval==0.0.19due tonumpyversion incompatibility with latest TensorFlow and to suppress errors during installation
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.22.1
0.22.1 (2020-10-08)
New:
- N/A
Changed
- added optional
referencesargument toSimpleQA.index_from_list - added
min_wordsargument toSimpleQA.index_from_listandSimpleQA.index_from_folderto prune small documents or paragraphs that are unlikely to include good answers qa.display_answersnow supports hyperlinks for document references
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.22.0
0.22.0 (2020-10-06)
New:
- added
breakup_docsargument toindex_from_listandindex_from_folderthat potentially speeds upaskmethod substantially - added
batch_sizeargument toaskand set default at 8 for faster answer-retrieval
Changed
- refactored
QAandSimpleQAfor better extensibility
Fixed:
- Ensure
save_pathis correctyl processed inLearner.evaluate
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.21.4
0.21.4 (2020-09-24)
New:
- N/A
Changed
- Changed installation instructions in
README.mdto reflect that using ktrain with TensorFlow 2.1 will require downgradingtransformersto 3.1.0. - updated requirements with
keras_bert>=0.86.0due to TensorFlow 2.3 error with older versions ofkeras_bert - In
lr_findandlr_plot, check for TF 2.2 or 2.3 and make necessary adjustments due to TF bug 41174.
Fixed:
- fixed typos in
__all__intextandgraphmodules (PR #250) - fixed Chinese language translation based on name-changes of models with
zhas source language
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.21.3
0.21.3 (2020-09-08)
New:
- N/A
Changed
- added
TopicModel.get_word_weightsmethod to retrieve the word weights for a given topic - added
return_figoption toLearner.lr_plotandLearner.plot, which allows the matplotlibFigureto be returned to user
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.21.1
0.21.1 (2020-09-03)
New:
- N/A
Changed
- added
num_beamsandearly_stoppingarguments totranslatemethods intranslationmodule that can be set to improve translation speed - added
halfparameter toTranslatorconstructor
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.21.0
0.21.0 (2020-09-03)
New:
- Added
translate_sentencesmethod toTranslatorclass that translates list of sentences, where list is fed to model as single batch
Changed
- Removed TensorFlow dependency from
setup.pyto allow users to use ktrain with any version of TensorFlow 2 they choose. - Added
truncation=Trueto tokenization insummarizationmodule - Require
transformers>=3.1.0due to breaking changes SUPPRESS_TF_WARNINGSenvironment variable changed toSUPPRESS_KTRAIN_WARNINGS
Fixed:
- Use
prepare_seq2seq_batchinsteadd ofprepare_translation_batchintranslationmodule due to breaking change intransformers==3.1.0
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.20.0
0.20.0 (2020-08-24)
New:
- added
nli_templateparameter toZeroShotClassifier.predictto allow versatility in the kinds of labels that can be predicted - efficiency improvements to
ZeroShotClassifier.predictthat allow faster predictions on large sequences of documents and a large numer of labels to predict - added 'multilabel
parameter toZeroShotClassifier.predict` - added
labelsparameter toZeroShotClassifer.predict, an alias totopic_stringsparameter
Changed
- N/A
Fixed:
- Allow variations on
accuracymetric such asbinary_accuracywhen inpecting model inis_classifier
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.19.7
0.19.7 (2020-08-16)
New:
- N/A
Changed
- added
class_weightparameter tolr_findfor imbalanced datasets - removed pins for
cchardetandscikitlearnfromsetup.py - added version check for
eli5fork - removed
scipypin fromsetup.py - Allow TensorFlow 2.3 for Python 3.8
- Request manual installation of
shapinTabularPredictor.explaininstead of inclusion insetup.py
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.19.4
0.19.4 (2020-08-10)
New:
- N/A
Changed
TextPreprocessorinstances now useYTransformclass to transform targetstexts_from_df,texts_from_csv, andtexts_from_arrayemploy the use of eitherYTransformDataFrameorYTransformimages_from_df,images_from_fname,images_from_csv, andimagas_from_arrayuseYTransformDataFrameorYTransform- Extra imports removed from PyTorch-based
zsl.core.ZeroShotClassifierandsummarization.core.TransformerSummarizer. If necessary, both can now be used without having TensorFlow installed by installing ktrain using--no-depsand importing these modules using a method like this.
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.19.0
0.19.0 (2020-07-29)
New:
- support for
tabulardata including explainable AI for tabular predictions learner.validateandlearner.evaluatenow support regression models- added
restore_weights_onlyflag tolr_find. When True, only the model weights will be restored after simulating training, not the optimizer weights. In at least a few observed cases, this "warm up" seems to improve performance when actual training begins. Further investigation is needed, so it is False by default.
Changed
- N/A
Fixed:
- added
save_pathargument toLearner.validateandLearner.evaluate. Ifprint_report=False, classification report will be saved as CSV tosave_path. - Use
torch.no_gradwithZeroShotClassifier.predictto prevent OOM - Added
max_lengthparameter toZeroShotClassifier.predictto prevent errors on long documnets - Added type check to
TransformersPreprocessor.preprocess_train
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.18.5
0.18.5 (2020-07-20)
New:
- N/A
Changed
- N/A
Fixed:
- Changed
qamodule to use use 'Auto' when loadingQuestionAnsweringmodels and tokenizer - try
from_pt=Trueforqamodule if initial model-loading fails - use
get_hf_model_nameinqamodule
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.18.4
0.18.4 (2020-07-17)
New:
- N/A
Changed
- N/A
Fixed:
- return gracefully if no documents match question in
qamodule - tokenize question in
qamodule to ensure all candidate documents are returned - Added error in
text.preprocessorwhen training set has incomplete integer labels
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.18.3
0.18.3 (2020-07-12)
New:
- added
batch_sizeargument toZeroShotClassifier.predictthat can be increased to speed up predictions. This is especially useful iflen(topic_strings)is large.
Changed
- N/A
Fixed:
- fixed typo in
load_predictorerror message
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.18.2
0.18.2 (2020-07-08)
New:
- N/A
Changed
- updated doc comments in core module
- removed unused
nosaveparameter fromreset_weights - added warning about obsolete
show_wdparameter inprint_layersmethod - pin to
scipy==1.4.1due to TensorFlow requirement
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago
ktrain - v0.18.0
0.18.0 (2020-07-07)
New:
- N/A
Changed
- Fixes to address changes or issues in TensorFlow 2.2.0:
- created
metrics_from_modelfunction due to changes in the way metrics are extracted from compiled model - use
loss_fn_from_modelfunction due to changes in they way loss functions are extracted from compiled model - addd
**kwargsto `AdamWeightDecay based on this issue - changed
TransformerTextClassLearner.predictandTextPredictor.predictto deal with tuples being returned bypredictin TensorFlow 2.2.0 - changed multilabel test to use loss insead of accuracy due to TF 2.2.0 issue
- changed
Learner.lr_findto usesave_modelandload_modelto restore weights due to this TF issue and addedTransformersPreprocessor.load_model_and_configure_from_datato support this
- created
Fixed:
- N/A
- Jupyter Notebook
Published by amaiya over 5 years ago