def Name_Entity_recognition2(f2):
     st = StanfordNERTagger(os.environ['STANFORD_CLASSIFIER'],
                            os.environ['STANFORD_NER_PATH'],
                            encoding='utf-8')
     st.java_options ='-mx1000m'
     word = word_tokenize(f2)
     classified_text = st.tag(word)
     return classified_text