Questions tagged [conceptnet]

ConceptNet is a semantic network containing lots of things computers should know about the world, especially when understanding text written by people.

About

ConceptNet is a multilingual knowledge base, representing words and phrases that people use and the common-sense relationships between them. The knowledge in ConceptNet is collected from a variety of resources, including crowd-sourced resources (such as Wiktionary and Open Mind Common Sense), games with a purpose (such as Verbosity and nadya.jp), and expert-created resources (such as WordNet and JMDict).

Links

13 questions
14
votes
1 answer

Which is better? OpenCyc or ConceptNet?

I'm doing a NLP project where I need to recognise concepts in sentences to find other similar concepts. I do this to infer word valences from a list I already have. I started using WordNet, but it gave many contradictory results. By contradictory…
Daniel Loureiro
  • 141
  • 1
  • 4
7
votes
1 answer

How to disambiguate words in Conceptnet

Conceptnet contains two basic types of nodes, words (e.g. /c/en/cat) and senses (e.g. /c/en/cat/n/domestic_cat). Unfortunately, the vast majority of edges use word nodes. This makes inferring difficult, because I can't be sure which sense a…
Cerin
  • 60,957
  • 96
  • 316
  • 522
3
votes
1 answer

Conceptnet Numberbatch (multilingual) OOV words

I'm working on a text classification problem (on a French corpus) and I'm experimenting with different Word Embeddings. I was very interested in what ConceptNet has to offer so I decided to give it a shot. I wasn't able to find a dedicated tutorial…
patri
  • 333
  • 1
  • 4
  • 16
3
votes
0 answers

Query by association in Conceptnet

I have some code that used to query Conceptnet version 5.4 using the following URL: http://conceptnet5.media.mit.edu/data/5.4/assoc/c/en/cat?filter=/c/en/dog/.&limit=10 This kind of query used to give you the shared edges between these two concepts.…
Josep Valls
  • 5,483
  • 2
  • 33
  • 67
2
votes
0 answers

Why is ConceptNet Numberbatch word embedding giving poor results for analogy queries?

I've been playing around with analogy queries over some publicly available word embeddings, in particular using the following: numberbatch-en-19.08 from https://github.com/commonsense/conceptnet-numberbatch glove.42B.300d from…
rhi
  • 303
  • 2
  • 9
2
votes
1 answer

ConceptNet 5.5 and JSON format

The previous ConceptNet 5.4 API version returns plain text JSON format (http://conceptnet5.media.mit.edu/data/5.4/c/en/library). Does someone familiar with the new ConceptNet 5.5 API? Why the query returns html source and not plain text like…
David
  • 527
  • 1
  • 8
  • 21
2
votes
0 answers

Using ConceptNet5 API to calculate the similarity between texts

I have found the ConceptNet5 API can be used to calculate the similarity between two terms with each other, for example: http://api.conceptnet.io/related/c/en/dog?filter=/c/en/cat/.&limit=1 However I was wondering if the API can also be used to…
user3398797
  • 429
  • 1
  • 7
  • 16
2
votes
0 answers

ConceptNet: simple query locally

I am completely new to ConceptNet. How can I query it for the same data that the web API provides, but locally? What is the function that is called behind the web API field?
ArekBulski
  • 4,520
  • 4
  • 39
  • 61
1
vote
0 answers

List characteristics relevant to a noun

I try to list the (physical) characteristics relevant to a given noun, i.e., all the words (adjectives and nouns) that could describe this noun. For example: road ... should return: black, flat, tar, porous, long... I've tried several unsatisfying…
NicolasF
  • 35
  • 5
1
vote
1 answer

ConceptNet RelatedTo Tuning

I'm using ConceptNet http://conceptnet.io to try to get related keywords using both their relatedto and edge/query endpoints. The data is awesome, however I've encountered some behaviour I can't figure out. If you query "relatedto" for the keyword…
Shanks
  • 177
  • 8
1
vote
1 answer

ConceptNet Database Connectivity with Java

Does somebody know how to connect ConceptNet Database with Java. I searched different tutorials, checked different forums but I still couldn't find the correct methodology. Also, how do I get and post data to/from ConceptNet using Java. Some people…
0
votes
0 answers

Is there any way to get the conceptnet dump file that only contains English nodes

I tried to download the whole dump file (assertions) from the https://github.com/commonsense/conceptnet5/wiki/Downloads This file is extremely large (~10GB) and then I write a python script to filter out non-English nodes: FILE =…
Yuki Wang
  • 85
  • 8
0
votes
2 answers

How to find word that are similar to two keywords using FastText?

I am trying to find words that are similar to two different words. I know that I can find the most similar word with FastText but I was wondering if there is a way to find a keyword that is similar to two keywords. For example, "apple" is similar to…
Brian Lee
  • 31
  • 2