Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
what is this class's return type? What are its public methods and its general application?
Where I can read on it?
Couldn't find it at http://www.nltk.org/ docs at all!
While other classes, like PunktSentenceTokenizer, are present.
In abstract, it is a sentence tokenizer(grouping in sentence, or words), depending on unsupervised machine learning.As I start to learn more about NLP, I found this website is helpful.
https://pythonprogramming.net/part-of-speech-tagging-nltk-tutorial/
In a python console exec:
import nltk
help(nltk)
help(nltk.PunktSentenceTokenizer)
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 months ago.
Improve this question
I am trying to get all the possible tags for a specific word in spacy. For example, still can be adjective or adverb. I want to be able to get both. How is this accomplished? I have searched all over the internet and got no answer. It seems it assumes the user wants only one tag. Thanks.
spaCy isn't like a big dictionary with data about words, the models label words in context. So spaCy is not able to do what you want.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
Sorry guys if this seems like a really basic question. I understand how to build applications using a programming language. Now, I read that tensorflow is written partly in C/C++ and Python. I'm wondering why this is done and how you can get multiple languages to interface with each other.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I've done a little predictive program with Python and I would like to transform it in an application for smartphones. Can I accomplish it with Python itself, or should I use another language? If yes, what APIs would you recommend for that?
Thanks
You might be able to do this with Kivy.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is there a python library for transliterating Hindi to English?
e.g. "खाया" should be converted to "khaya"
The less crappy transcoder I know of is sanscript. It is intended to transliterate Sanskrit text, but is of course also suited for Hindi, as they both use the Nagari notation. There are some issues in the code, and it does not do any validation of the input, but it has a large choice of scripts (not only Nagari).
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm going to write a post/comment function in Django with models and views.
I need a good example and tutorial.
Or I need an example.
Take a look at Django tutorial: https://docs.djangoproject.com/en/1.6/intro/tutorial01/