All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Add max_len option in
fit
method #21 - Set default model path as a command line argument for
try
CLI #24
- Add max_len option in Dataset to restrict the max length of a tensor inputting to a model #20
- Revise code structure #22
- Fix two issues in #23
- Responses include EOS at the end of the utterance.
- Tokenizer adds special tokens if the tokenizer adds them as default.
output_path
andsave_best_model
parameters tofit
method. #13output_path
: when given, model is saved while training in the fit method. Default is None (will not be saved)save_best_model
: when given with output_path, fit will only save the best model inoutput_path
min_new_tokens
option togenerate
method. #16- eval method in model and cli. #14
print_config
option tofit
cli command. #18
- streamlit UI by using side-by-side columns to show conversation. #15
- Change CLI command name from run_streamlit to try. #17
- Obsoleted modules for bert and gpt2_lm. https://github.com/colorfulscoop/convmodel/pull/7/files
- build_data_loader method in ConversationDataset class. #5
- ConversationModel and its usage.