Skip to content

Releases: theamrzaki/eazymind

eazymind 0.0.3

11 May 14:26
Compare
Choose a tag to compare
eazymind 0.0.3 Pre-release
Pre-release

EazyMind

EazyMind provides ai-as-a-service for abstractive text summarizaion , you simply provide your

  1. Sentence to be summarized
  2. Api key from free registeration on eazymind website

Insatllation :

  1. Regsiter a Free account on EazyMind
  2. pip install eazymind

Usage :

from nlp.eazysum import Summarizer

#---key from eazymind website---
key = "xxxxxxxxxxxxxxxxxxxxx"

#---sentence to be summarized---
sentence = """(CNN)The White House has instructed former
    White House Counsel Don McGahn not to comply with a subpoena
    for documents from House Judiciary Chairman Jerry Nadler, 
    teeing up the latest in a series of escalating oversight 
    showdowns between the Trump administration and congressional Democrats."""
    
summarizer = Summarizer(key)
print(summarizer.run(sentence))

test eazymind v0.02

11 May 13:36
Compare
Choose a tag to compare
test eazymind v0.02 Pre-release
Pre-release

EazyMind

EazyMind provides ai-as-a-service for abstractive text summarizaion , you simply provide your

  1. Sentence to be summarized
  2. Api key from free registeration on eazymind website

Insatllation :

  1. Regsiter a Free account on EazyMind
  2. pip install eazymind

Usage :

from nlp.eazysum import Summarizer

#---key from eazymind website---
key = "xxxxxxxxxxxxxxxxxxxxx"

#---sentence to be summarized---
sentence = """(CNN)The White House has instructed former
    White House Counsel Don McGahn not to comply with a subpoena
    for documents from House Judiciary Chairman Jerry Nadler, 
    teeing up the latest in a series of escalating oversight 
    showdowns between the Trump administration and congressional Democrats."""
    
summarizer = Summarizer(key)
print(summarizer.run(sentence))

test eazymind

11 May 13:31
Compare
Choose a tag to compare
test eazymind Pre-release
Pre-release
v0.0.1

Restructure