Questions tagged [vocabulary]

For questions related to dictionary-like structures in programming, mainly to Semantic Web vocabularies. Please do not use in place of the "terminology" tag.

In Semantic Web

  • In the Semantic Web field, a controlled vocabulary is a set of URIs used to identify things, relations or classes.

  • A vocabulary with well-developed subsumption (subclass-superclass) relations is often called a taxonomy.

  • A taxonomy with well-developed non-subsumption relations is often called an ontology.

See also:

190 questions
0
votes
2 answers

Vocabulary size in CSV file

I have a CSV file that looks like: Lorem ipsum dolor sit amet , 12:01 consectetuer adipiscing elit, sed , 12:02 etc... It is quite a large file (approx. 10,000 rows) I would like to get the total vocabulary size of all the rows of text together.…
Julia
  • 1,369
  • 4
  • 18
  • 38
0
votes
1 answer

XML Element and Type hierarchies

I have a conceptual question, because I'm currently writing a concept concerning Dataexchange using xml & xsds. When describing xsds, I often find myself wondering whether I am using the correct vocabulary. If I have, for example a definition as…
Mischa Obrecht
  • 2,737
  • 6
  • 21
  • 31
0
votes
2 answers

What does it mean to return a function result as an "output parameter"?

Hi I was hoping that I could get a better understanding of a few things regarding C++. We are learning about functions and I missed a class and I'm thinking it was the wrong class to of missed because I am so confused. I have two problems…
Lynda Blanton
  • 33
  • 1
  • 2
  • 11
0
votes
1 answer

Term for converting object to serializable object

I am designing a system for serializing in-memory objects to a number of formats (i.e. json, protocol buffers, etc). In order to do so I use a two-step proces: first I define methods for every class I want to serialize to convert it to an more…
Jeroen Ooms
  • 31,998
  • 35
  • 134
  • 207
-1
votes
1 answer

Can DocumentAI automate data extraction based on controlled vocabularies?

My organization's mission is to synthesise data from pds of research papers in social science. We have our own taxonomies of defined terms which we extract from each paper (e.g. World Bank Sector: Health, Education and so on). The trial version of…
-1
votes
1 answer

implementing a vocabulary app for android and pc with a shared database

I am starting to develop a vocabulary app out of necessity without good prior knowledge of the tools that I will have to use. Please excuse the nooby question: your answers, even short and vague, will save me lots of time... The app is supposed to…
Serhii
  • 355
  • 2
  • 11
-1
votes
1 answer

RDF structure for online shopping product

What is rdf code and vocabulary for product list in online shopping website (html/html5) : For google and other search engine
PHP
user3754884
  • 87
  • 11
-1
votes
1 answer

How can I create a word that does not contain the previous letter contained in the word?

I see the point of the question stays in the first elif: import random as rnd vowels="aeiou" consonants="bcdfghlmnpqrstvz" alphabet=vowels+consonants vocabulary={} index=0 word="" positions=[] while index<5: random_lenght=rnd.randint(2,5) …
-1
votes
2 answers

Need Something That Catagorizes Word Based On Vocab Level

I'm doing a plagiarism type project in Java and would like to somehow give each word a rating based on how strong the word choice is. Is there anything that does this or any way to do this?
mwristine
  • 93
  • 2
  • 9
-2
votes
1 answer

Where is the solution stub in this program and how would I call a method in it?

This is a specific question, don't downvote it just because it doesn't help you. public class Answer { public static String answer(int n) { String nums=""; int limit = 10005; int x=2; while(limit>0){ if(isPrime(x)){ …
1 2 3
12
13