Top "Tagging" questions

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Validate the number of has_many items in Ruby on Rails

Users can add tags to a snippet: class Snippet < ActiveRecord::Base # Relationships has_many :taggings has_many :tags, :through =&…

ruby-on-rails validation tagging has-many
How to auto-tag content, algorithms and suggestions needed

I am working with some really large databases of newspaper articles, I have them in a MySQL database, and I …

tags nlp tagging
Unsupervised automatic tagging algorithms?

I want to build a web application that lets users upload documents, videos, images, music, and then give them an …

algorithm machine-learning nlp tagging
How to commit/push a Git tag with Gradle?

I have created a specific Gradle task that should only be called in the Jenkins build system. I need to …

git gradle tagging
Is there any Treebank for free?

Is any place I can download Treebank of English phrases for free or less than $100? I need training data containing …

nlp tagging corpus
Count verbs, nouns, and other parts of speech with python's NLTK

I have multiple texts and I would like to create profiles of them based on their usage of various parts …

python nlp tagging nltk part-of-speech
how can i create a tagging system using php and mysql?

wondering how i can create a tagging system in php and with a mysql database, my initial thoughts were to …

php mysql database-design tags tagging
Mac OS X : add a custom meta data field to any file

I would like to me able to set (and get) a custom metadata attribute for any file. What is the …

macos metadata tagging spotlight
Python NLTK: How to tag sentences with the simplified set of part-of-speech tags?

Chapter 5 of the Python NLTK book gives this example of tagging words in a sentence: >>> text = nltk.…

python tagging nltk
Union and Intersect in Django

class Tag(models.Model): name = models.CharField(maxlength=100) class Blog(models.Model): name = models.CharField(maxlength=100) tags = models.ManyToManyField(Tag) …

python django django-models django-views tagging