From 92da96e6c8bd6cedbba9b9ae056948a9adc72183 Mon Sep 17 00:00:00 2001 From: Madison May Date: Fri, 7 Nov 2014 17:22:09 -0500 Subject: [PATCH] Updates to README --- CHANGES.txt | 1 + README | 3 +++ README.md | 3 +++ setup.py | 2 +- 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index c3f8f44..0e02727 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,3 +12,4 @@ v0.4.3, Thu Sep 11 -- Added image features api and sphinx compliant documentatio v0.4.4, Thu Sep 25 -- Added dependencies installation to setup.py v0.4.5, Thu Sep 25 -- Added interface to local indico server v0.4.6, Fri Oct 27 -- Updated to point to new indico api servers, cleaner REST API +v0.4.8, Fri Nov 7 -- Updated API interface to include new text tags API diff --git a/README b/README index 95cec92..4b76b3a 100644 --- a/README +++ b/README @@ -41,6 +41,9 @@ Examples >>> sentiment('Really enjoyed the movie.') {u'Sentiment': 0.8105182526856075} +>>> text_tags("On Monday, president Barack Obama will be...") +{u'fashion': 0.024739582352183764, u'art': 0.008637280256320275, u'energy': 0.013183388999943419, ...} + >>> test_face = np.linspace(0,50,48*48).reshape(48,48).tolist() >>> fer(test_face) diff --git a/README.md b/README.md index 272b0bd..6a16e80 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,9 @@ Examples >>> sentiment('Really enjoyed the movie.') {u'Sentiment': 0.8105182526856075} +>>> text_tags("On Monday, president Barack Obama will be...") +{u'fashion': 0.024739582352183764, u'art': 0.008637280256320275, u'energy': 0.013183388999943419, ...} + >>> test_face = np.linspace(0,50,48*48).reshape(48,48).tolist() >>> fer(test_face) diff --git a/setup.py b/setup.py index d61d160..cc6e82f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name="IndicoIo", - version='0.4.7', + version='0.4.8', packages=[ "indicoio", "indicoio.text",