This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| get_line_by_line_texlive_dependencies = subprocess.run( | |
| [ | |
| "apt-cache", | |
| "depends", | |
| "texlive-full" | |
| ], | |
| universal_newlines=True, | |
| stdout=subprocess.PIPE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package demoNameFind; | |
| import java.io.FileInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import opennlp.tools.namefind.NameFinderME; | |
| import opennlp.tools.namefind.TokenNameFinderModel; | |
| import opennlp.tools.tokenize.Tokenizer; | |
| import opennlp.tools.tokenize.TokenizerME; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=UTF-8 | |
| from __future__ import division | |
| import nltk | |
| import re | |
| import requests | |
| # Add your freebase key here | |
| # If you don't have one, register at https://code.google.com/apis/console | |
| FREEBASE_KEY = "" |