Config, Configuration, Configurable
Pre-release
Pre-release
This release is mainly devoted to centralized configuration. Lot's have changed, hopefully not but maybe broken (Always feel free to open an issue)
New Capabilities
- New command for sadedegel CLI,
sadedegel config
to retrieve all possible configurations.- default values (
sadedegel/default.ini
) are shipped with sadedegel can be overwritten by creating a user defined config file in~/.sadedegel/user.ini
(overwritten values are indicated onsadedegel config
output.)
- default values (
- Configurable
tf
andidf
vectors perSentence
is ready with new configuration model. - We have finally implemented
forward
version ofBandSummarizer
explained in sadedegel Presentation
Internal Update
- Previously
sadedegel.Doc
was a Python class which is initialized with a document (string), we have seen some caveats in this approach and nowsadedegel.Doc
is an instance ofsadedegel.DocumentBuilder
and without changing (hopefully !!!) end user experience what you do is to trigger__call__
function returning asadedegel.Document
instance.