Skip to content

Commit

Permalink
add imports, bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
jlherzberg committed Nov 6, 2019
1 parent c8fc724 commit e831faa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/tagnews/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
from .geoloc.tag import GeoCoder, get_lat_longs_from_geostrings
from .utils.load_data import load_data
from .utils.load_vectorizer import load_glove
from .senteval.eval import SentimentGoogler

__all__ = [utils, crimetype, CrimeTags, GeoCoder,
__all__ = [utils, crimetype, CrimeTags, GeoCoder, SentimentGoogler,
get_lat_longs_from_geostrings, load_data, load_glove]

__version__ = '1.2.4'
2 changes: 2 additions & 0 deletions lib/tagnews/senteval/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ def is_police_entity(self, entity):
return entity
return False

def set_bucket_value(self):
pass

def pre_process_text(html_text):
"""
Expand Down

0 comments on commit e831faa

Please sign in to comment.