Tagged Questions
2
votes
1answer
104 views
unsupervised text classification with php
Are there any pre-made libraries for PHP that can be used to help with tasks involving unsupervised text classification information?
I've looked around the site at other questions, but I have been ...
0
votes
1answer
45 views
I need to put my results in order that get from mysql
I have a database table like below:
id | igroup | title | url | text
1 | gr1 | Title 1 | urltoimage1 | text1
2 | gr1 | Title 2 | urltoimage2 | text2
3 | gr2 | Title 3 ...
0
votes
1answer
155 views
Implementing Bayes classifier (in PHP)
I have a theoretical question about a Naive Bayes Classifier. Assume I have trained the classifier with the following training data:
class word count
-----------------
pos good 1
sun 1
...
4
votes
1answer
666 views
Using a Naive Bayes Classifier to classify tweets: some problems
Using, amongst other sources, various posts here on Stackoverflow, I'm trying to implement my own PHP classier to classify tweets into a positive, neutral and negative class. Before coding, I need to ...
0
votes
2answers
175 views
Which should be the list of ignored words for the Naive Bayesian Classifier?
I am working with Naive Bayesian classifier over PHP (http://www.xhtml.net/php/PHPNaiveBayesianFilter)
And there's a list of words which can be ignored while training the system. Those words are not ...
2
votes
1answer
125 views
Is there a PHP Fleiss' Kappa implementation?
I'm looking for a PHP implementation of Fleiss' Kappa that is publicly available. So far, I found some classes written in Java, Perl, Ruby and Python, but nothing in PHP.
Do you have any idea or ...
0
votes
1answer
477 views
Looking for Jenks Optimization - Data Classification
I'm looking for an implementation of the Jenks Optimization algorithm for data classification.
Jenks is used to find "natural breaks" in the data.
I want to create kml maps for the US and color each ...
3
votes
2answers
130 views
Varchar values to numerical classification
I have a database containing three tables:
practices - 8 fields
patients - 47 fields
exacerbations - 11 fields
The majority of the fields in these tables are recorded in varchar format, other ...
0
votes
0answers
474 views
English word classification
English word detection from string + classification
I have a large database of urls and I want to extract the English word from this data and then classify the words contained in URL
Eg apple.com -> ...
1
vote
4answers
201 views
Creating a hierarchy from simple strings (PHP)
I have some strings in a DB: x, y, z, x1, x2, x12, x22, x23, y1, y2, y3, z1, z2 (don't take them literally).
From those strings, and having some rules of classification (strings x1, x2 and x3 ...
0
votes
2answers
469 views
PHP Frameworks - Is there a “best” one? [closed]
I know this is an open-ended question, but is there a PHP Framework that's generally acclaimed as being "the best"?
Thank you.
5
votes
1answer
871 views
PHP implementation of Bayes classificator: Assign topics to texts
In my news page project, I have a database table news with the following structure:
- id: [integer] unique number identifying the news entry, e.g.: *1983*
- title: [string] title of the text, e.g.: ...
4
votes
9answers
914 views
Image Classification - Detecting Floor Plans
I am working on a real estate website and i would like to write a program that
can figure out(classify) if an image is a floor plan or a company logo.
Since i am writing in php i will prefer a php ...
