Skip to content

Config, Configuration, Configurable

Pre-release
Pre-release
Compare
Choose a tag to compare
@husnusensoy husnusensoy released this 07 Jan 22:38
· 476 commits to master since this 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 on sadedegel config output.)
  • Configurable tf and idf vectors per Sentence is ready with new configuration model.
  • We have finally implemented forward version of BandSummarizer 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 now sadedegel.Doc is an instance of sadedegel.DocumentBuilder and without changing (hopefully !!!) end user experience what you do is to trigger __call__ function returning a sadedegel.Document instance.