From cefca65ed8e0947288a9c4cfc65bab95594b3838 Mon Sep 17 00:00:00 2001 From: nikhiljsk Date: Tue, 18 Feb 2020 14:26:44 +0530 Subject: [PATCH] changing defaults --- feature_extraction/feature_extraction.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/feature_extraction/feature_extraction.py b/feature_extraction/feature_extraction.py index 330474d..39709ec 100644 --- a/feature_extraction/feature_extraction.py +++ b/feature_extraction/feature_extraction.py @@ -179,11 +179,11 @@ def get_features(docs, stages={}, ind=None, send_end=None): default_stages = { 'nouns': True, 'verbs': True, - 'adjs': True, - 'noun_phrases': True, - 'keywords': True, - 'ner': True, - 'numbers': True, + 'adjs': False, + 'noun_phrases': False, + 'keywords': False, + 'ner': False, + 'numbers': False, } default_stages.update(stages)