-
Notifications
You must be signed in to change notification settings - Fork 287
Closed
Labels
refactoringa technical improvement which does not add any new features or change existing features.a technical improvement which does not add any new features or change existing features.
Milestone
Description
Currently, pythainlp.tag.perceptron is the only submodule that uses dill.
dill is an extended version of pickle.
Looks like we currently use a very basic functionality of of serialization that the standard pickle may able to handle and there's no need for dill.
pythainlp/pythainlp/tag/perceptron.py
Line 19 in d2b67e0
| model = dill.load(fh) |
Propose to investigate more and see if we can move from dill to pickle and reduce the number of mandatory dependencies by one.
Metadata
Metadata
Assignees
Labels
refactoringa technical improvement which does not add any new features or change existing features.a technical improvement which does not add any new features or change existing features.