Natural language processing API for iOS 5 [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am looking for NLP capable library or API which will be able to identify number, date, person, place name, and parts of speech from a given sentence.

NSLinguisticTagger will do this. Introduced in iOS 5.

You should try Nuance SDK for iOS. You also can try CMU (open source) but quality is pretty low, especially for conditions with noisy environments.

It seems like you're looking for named entity recognition. You could use Boost Spirit for parsing.

Related

Dataset for hand gesture recognition [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I need a dataset for my future project based on image processing, hand recognition. I need a minimum of 5 hand position and orientation and a minumim of 200 images per set.
I want to know if there are websites where I can find a great variety of datasets.
I recommend you to search here: http://homepages.inf.ed.ac.uk/rbf/CVonline/Imagedbase.htm#gesture.
I needed this for a project too and I found a lot of variations here. It also depends on what kind of gestures you are looking for, but I think you will find here what you need.

Text Extraction using Swift [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to extract text from articles online for an ios app I am developping. Is there something similar to goose that extracts just the article from the html for Swift?
It's very interesting subject. I'm not pretty sure, but it seems to be not an easy job to do. Recently Ivan Titov told about "Inducing Semantic Representations from Text with Little or No Supervision." You can see this presentation here: https://events.yandex.ru/lib/talks/2728/ (in English.)
So, our team recently took part in Swift-hackathon by CocoaHeads Moscow for this subject, but not very good result were earned. We developed recursive grabber and other cool things, but can't attain the goal. If you want to contribute to that project, look at this repo: https://github.com/CocoaHeadsMsk/hawking

How to capture code metrics in Xcode? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to write my code more cleaner. For this purpose I'm looking for a tool to generate code metrics in Xcode. I'd like to have a statistic showing me how many tests, classes etc. were added. And the main goal is retrieving cyclomatic complexity of a program.
Does anyone know a good Xcode tools or plugin that could provide me some code metrics?
Have a look at Xcode Statistician.
A paying (~$5) but good solution: Project Statistics for Xcode.

is there any Framework to implement a spectrum analyzer? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to Implement the Music Tracker as like below image.
I want to implement it in to the iphone. So is there any Music API or any Sound Library available to implement it in to iPhone ??
Please help me regarding this.
This isn't a 'tracker', but is a visual representation of the frequency domain for a given time period during playback.
You'll need a library that can do Fast Fourier Transforms (FFT) such as this.

are there any API for the EPUB standard? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I want to work on personal project working with books and magazines. I was wondering if there were any APIs for the EPUB standard. That are open to the public.
Please and thank you
GC
Don't know of any freestanding API as such, but FBReader supports EPUB so it might be worth looking through the sources of that and see if you might be able to extract the EPUB bits easily.
It depends on what you need the API to do for you. Create books, parse books, mine text in books? I'm confused as to why you would mark as correct an answer which points to a reader--how could that help? You are probably looking for things such as https://code.google.com/p/python-epub-builder/.

Resources