Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
221 views

Extracting motion data from a list of coordinates

I have a series of CSV files of timestamped coordinates (X, Y, and Z in mm). What would be the simplest way to extract motion data from them? Measurables The information I'd like to extract includes ...
8
votes
5answers
3k views

How does music fingerprinting work (for sites such as Shazam and Lala.com)?

My large (120gb) music collection contains many duplicate songs, and I've been trying to fingerprint tracks in the hopes of detecting duplicates. And since I'm a CS Major I'm very curious as to what ...
5
votes
5answers
2k views

Designing a SQL table with hierarchy/sub-categories

Hey everyone, I have a table that looks something like this: ID | Keyword | Category | Sub-Category | Sub-Sub-Category | Sub-Sub-Sub-Category Do i need to split it up ...
3
votes
2answers
5k views

R - How to convert a factor to an integer\numeric in R without a loss of information

When I convert a factor to a numeric, the values change to rank values. R> m$obs [1] 0 0 1 1 1 1 3 3 3 3 3 3 3 9 9 9 9 9 9 9 9 9 11 11 12 13 13 13 13 13 13 13 14 Levels: 0 ...
3
votes
3answers
200 views

Is integration testing an umbrella term and if so, what types of tests does it include?

I find the concept of 'integration testing' confusing. There seems to be quite a few explanations and scopes: Functional/acceptance testing (e.g. testing the user interface with for example, ...
3
votes
3answers
118 views

Categorising a large mysql result with php while?

I'm using the following to grab my large result set from a mysql db: $discresult = 'SELECT t.id, t.subject, t.topicimage, t.topictype, c.user_id, c.disc_id FROM topics AS t LEFT JOIN collections AS c ...
2
votes
1answer
45 views

has_many :through won't save to the database

I have an association of Item & Category through Categorization: class Item < ActiveRecord::Base has_many :categorizations has_many :categories, :through => :categorizations, :source ...
2
votes
1answer
72 views

Automatically linking categories to each other when categorizing text

I've been working on a project to data-mine a large amount of short texts and categorize these based on a pre-existing large list of category names. To do this I had to figure out how to first create ...
2
votes
3answers
235 views

Categorize book authors as fiction vs non-fiction

For my own personal purposes, I have about ~300 authors (full name) of various books. I want to partition this list into "fiction authors" and "non-fiction authors". If an author writes both, then the ...
2
votes
2answers
68 views

Categorizing data based on the data's signature

Let us say I have some large collection of rows of data, where each element in the row is a (key, value) pair: 1) [(bird, "eagle"), (fish, "cod"), ... , (soda, "coke")] 2) [(bird, "lark"), ...
2
votes
2answers
145 views

Extracting a country name from a text string

I'm looking at writing a mashup app that will take submission titles from a subreddit and attempt to plot them on a map based on where they are likely to be relevant. I'd also like to add on things ...
2
votes
1answer
153 views

Categories of tags

I'm starting a pro bono project that is the web interface to the world's largest collection of lute music and it's a challenging collection from several points of view. The pieces are largely from ...
2
votes
0answers
413 views

categorize websites - open source LSI?

Im looking to categorize lots of websites (millions). I can use Nutch to crawl them and get the content of the sites, but I am looking for the best (and cheapest or free) tool to categorize them. One ...
1
vote
1answer
55 views

R: grouping/splitting a dataset by categories in combination with apply.weekly()

Intro I am not an R expert yet so please excuse another question which I probably should be embarassed of to ask. In another question I asked on stackoverflow I got some very helpful comments on how ...
1
vote
0answers
32 views

Default Category in Lingpipe's Text Categorization

I'm using the Lingpipe's Text Categorization feature in an application. The classifier is working just fine, however, I've noticed the it does not support a "Default Category". That is, there is no ...
1
vote
1answer
92 views

Spam prevention in Rails

I've got a Rails app where users can send messages to other users. The problem is, it's the type of site that draws many spammers who send bogus messages. I'm already aware of a couple spam services ...
1
vote
0answers
51 views

Alternate to ShowCategoriesDialog to show most recent categories

I wrote a macro that prompts me to add a category to an outgoing e-mail if there are none (saves time when looking for 2-year-old e-mails). I noticed that if I categorize an e-mail manually without ...
1
vote
1answer
111 views

classification using lingpipe

As a part of my academic research project, I am trying to build an application wherein I will have a set of urls retrieved from the web. The task is classify each of these urls into some category. ...
1
vote
0answers
74 views

XML Multiple Category and Sub-Category structure

What is the best data structure for an XML document to represent a N-Category for a subject? I want give the possibility to the user to create infinite category end sub-category, and then grouping ...
1
vote
0answers
69 views

Need help regarding text classification!

Has any one used lingpipe text classifier? http://alias-i.com/lingpipe I have a starting problem using that. If anyone used it before please help me using it. Thanks in advance. Arjun
1
vote
0answers
132 views

Regarding semantic analysis of content using lingpipe!

I am working on my sem project and I need some help. I need to classify the webpages based on the content present in it. For Instance, the following URL is regarding cricket ...
1
vote
1answer
369 views

LibSVM and non-numerical data

I'm interested in doing text categorization using LibSVM. How do you recommend I convert the terms/words to numerical data, so LibSVM can understand it? Thank you!
1
vote
1answer
90 views

Standards for taxonomy terms or categories

Every time I build an ecommerce application I need to invest a considerable amount of time into categorising products. Factors such as ambiguoty, duplication and subjectivity can often lead to rework ...
1
vote
3answers
110 views

What would you call “callback” or “closure” in general?

Which keyword / tag should we use to describe them when we're taking notes for them. If they are placed under the category "software design", is it appropriate? @edit: It's more about how you ...
1
vote
3answers
315 views

MYSQL: returning zero when no value is present, categorized monthly

I have the following two tables that record expenditure and provide expenditure category information: Table transactions: +-------+--------+--------+ | month | cat_id | amount | ...
1
vote
5answers
450 views

Categorizing Programming Languages

I've worked among others with Java, Prolog, SQL and C# languages so far. I know that Java and C# are imperative, Prolog declarative and SQL somewhat declarative languages. Java and C# are ...
0
votes
0answers
26 views

Text categorisation datasets examples

i am looking for large datasets containing various categories, i.e. social, sports, politics, etc. I have in mind those three: The 20 Newsgroups data set The TechTC-300 Test Collection for Text ...
0
votes
2answers
70 views

Text classification categorisation pointers

i am trying to develop a very simple program for classifying and categorising documents using various algorithms. My problem, since i am a beginner is that i cannot find good articles or websites for ...
0
votes
1answer
77 views

Magento category/subcategory as a page

I'm trying to use a category and its subcategory to render a custom page. To do this I've tried the following: * Catalog->Categories->Manage Categories * Create the category o Create any ...
0
votes
1answer
84 views

How to automatically assign a given text to different categories?

I'm working on this project in which we have some categories such as Beauty Activities Shopping Categories are tagged, for example some of the tags are: Beauty => Haircut, spa, manicure, ...
0
votes
0answers
17 views

Which are different algorithms for Content Categorization?

I have a large amount of crawled data which I want to categorize before dumping into DB. I know about some of the 3rd party API like Alchemy, open calais...but all these have request limitations and ...
0
votes
0answers
17 views

How can I create a “Categorized” dwop don menu in the “New email” panel using Oulook 2010?

I succeeded create a pop-up window (http://superuser.com/questions/194173/in-outlook-2010-can-you-add-categories-to-the-new-email-ribbon), but using this pop-up I have to push an extra - unneccesary - ...
0
votes
0answers
45 views

What is the category of navigation timing specification? [closed]

I've recently read Navigation Timing Specification from W3C, and made a simplified article about it at Navigation Timing. But when I wanted to categorize it, I doubted whether to consider it to be ...
0
votes
0answers
62 views

how to get category among words in wikipedia?

i've problem about extracting category among words. i have several words in a cluster ("apple","iMac","snowleopard") and i would like to retrieve category among that words. ...
0
votes
0answers
34 views

Auto-Categorizing Questions

Need to auto-categorize questions based on words (already categorized) that are inputed into a database. some ideas I came up with: e.g. burger = food category tasiest = food cateory what is the ...
0
votes
0answers
19 views

Is there an online service providing software name-category mapping?

I've written a litte software that show all installed applications in a computer. However, I also want to know the "category" of the applications. (Game, Office Software, DBMS etc.) Is there an ...
0
votes
0answers
64 views

Ideas for modeling a product categorization system

I'm looking for ideas for modeling a product categorization system that's as deep and comprehensive as that of Amazon.com. Should it be hierarchical? Something like 'Departments have Categories, ...
0
votes
1answer
85 views

categorize a set of phrases into a set of similar phrases

I have a few apps that generate textual tracing information (logs) to log files. The tracing information is the typical printf() style - i.e. there are a lot of log entries that are similar (same ...
0
votes
2answers
352 views

Database Structure for a Faceted Search

I am creating an eCommerce site that needs to have a faceted search tool so that customers can narrow down a product search via categories and classifications in the same style as ebuyer.com and ...
0
votes
0answers
237 views

Full text search in reverse mode

We are trying to build the categorization tool which should have a keyword match. Each category has it's keywords. Each asset may belongs to many categories. In order to categorize asset we need to ...
0
votes
2answers
85 views

Modeling question about categorization. To subtype or not to?

I need some advice on how to model this simple categorization (?) example: I have a product. A product can be of different types, such as ProductType 1, ProductType 2, and ProductType 3. All products ...
0
votes
1answer
166 views

How to sort websites into categories based on keyword content

I'm writing a webrobot which categorizes sites based on there keyword/meta/links into a predefined list of categories. I've been looking at various ontology approaches and have looked at Wordnet (for ...
-1
votes
1answer
37 views

iphone categorization problem

I'll make a simple app with these features; In main windows there will be a menu. Menu Item 1 Menu Item 2 Menu Item 3 When user click Menu Item 1 a new menu based view should appear, however when ...