-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New document class #20
Open
corentin-larose
wants to merge
1
commit into
camspiers:master
Choose a base branch
from
qapa:new-document-class
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I like the idea, but I am still thinking about the implications. |
Just figured out that I put my explanations in the commit message, don't know if you saw them (but yes, a lot to think... It's just a lead): For instance, this document can be used directly in classify() method replacing the commented code and thus the related properties/accessors: public function classify(Document $document)
{
$results = array();
/*
if ($this->documentNormalizer) {
$document = $this->documentNormalizer->normalize($document);
}
$tokens = $this->tokenizer->tokenize($document);
if ($this->tokenNormalizer) {
$tokens = $this->tokenNormalizer->normalize($tokens);
}
$tokens = array_count_values($tokens);
*/
$tokens = $document;
[...] My pros
My cons
|
For instance, this document can be used directly in classify() method replacing the commented code and thus the related properties/accessors: ```php public function classify(Document $document) { $results = array(); /* if ($this->documentNormalizer) { $document = $this->documentNormalizer->normalize($document); } $tokens = $this->tokenizer->tokenize($document); if ($this->tokenNormalizer) { $tokens = $this->tokenNormalizer->normalize($tokens); } $tokens = array_count_values($tokens); */ $tokens = $document; [...] ``` My pros - Strong contract for Documents through interface - Document is in a frequency state ASAP - Document API is very wide open (cf Unit Tests) - Document can still be manipulated as an array/Iterable (shame, Symfony config component (DataStore) doesn't like ArrayObject) - Since document is an object, it is more RAM-efficient (no multiple copies as with an array) - Agnostic approach using SPL - One can even use closures/built-in functions for normalizers/tokenizers (faster?) - Hydrators/Extractors made simplier - Some more document-level calculations could be done in the instance - TokenCountByDocument no longer necessary My cons - Not sure if it should be in tokens state rather than in frequency state (need for calculation/count? we could store these information either) - Loose contracts for normalizers/tokenizers since it uses callables instead of classes with interfaces (could still be enforced though, but we would loose the closures/built-in functions advantage) - Slower than arrays? (not sure, needs a bench since SPL is incredibly fast, and it removes a lot of logic/iterations around) - Static approach for accessors which is sometimes hated by developpers (Unit Tests...) - Your cons?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Work in progress, just to know if you like this lead...