Questions tagged [wsd]

WSD, or Web Services for Devices, is a Windows Port Monitor that facilitates automatic printer and functionality discovery.

WSD, or Web Services for Devices, is a Windows Port Monitor that facilitates automatic printer and functionality discovery. It is similar to Plug-and-Play for USB devices.

Helpful article: http://blogs.technet.com/b/askperf/archive/2008/02/11/ws2008-the-wsd-port-monitor.aspx

19 questions
9
votes
2 answers

How to get the wordnet sense frequency of a synset in NLTK?

According to the documentation i can load a sense tagged corpus in nltk as such: >>> from nltk.corpus import wordnet_ic >>> brown_ic = wordnet_ic.ic('ic-brown.dat') >>> semcor_ic = wordnet_ic.ic('ic-semcor.dat') I can also get the definition, pos,…
alvas
  • 115,346
  • 109
  • 446
  • 738
4
votes
0 answers

Why CXF won't annotate bare parameter with @XmlJavaAdapter?

About problem I use Wsdl2Java to generate java classes from wsdl file. Jaxb throws exception "unknown unmarshaller" when using generated web service interface. The problem exists in operations where their input parameter is an element of xs:dateTime…
Jacek
  • 829
  • 12
  • 31
3
votes
1 answer

Can I use WMI to manage WSD devices (specifically printers)?

I am using WMI with C# to enumerate and modify the printers on my computer. I'm running Windows 7, and everything is working fine when I try to modify printers that are installed "classically". By "classically", I mean that the printer is just…
Chris Laplante
  • 29,338
  • 17
  • 103
  • 134
3
votes
0 answers

how can I get lesk similarity score for all the senses of given words using ws4j library?

I am trying to get LESK similarity score between all the senses of two words using ws4j as provided on its online ws4j demo in the format word#pos#sense number for all the senses of both the words but I am not able to find how to get result in same…
Olaf
  • 51
  • 3
3
votes
1 answer

calculate Similarity of two adverbs or two adjectives

I want to write a program to calculate the similarity of two adverbs or two adjectives, but The WordNet has not ontology structure for adverb and adjective. At the first try, I used The Adapt-lesk algorithm. The result of this algorithm is very…
SahelSoft
  • 615
  • 2
  • 9
  • 22
3
votes
1 answer

List of stopwords for NLP

Is there a list of stop words that people usually use to remove punctuations and close class words (such as he, she, it) when performing NLP or IR/IE related task? I have been trying out topic modeling using gibbs sampling for word sense…
alvas
  • 115,346
  • 109
  • 446
  • 738
2
votes
1 answer

WIA + network scanner with adf = 1 page

I am writing a program to work with a network scanner through WIA. Everything works fine when scanning only one page. When I turn on the feeder: foreach (WIA.Property deviceProperty in wia.Properties) { if (deviceProperty.Name == "Document…
Digital God
  • 471
  • 1
  • 5
  • 17
2
votes
0 answers

Is there any way to extract the sense_id or sense_key of a particular word from semcor-tagged sentences?

SemCor is a widely used corpus in supervised learning for Word Sense Disambiguation (WSD), where each sentence contains sense tags. Therefore, it is easy to classify the target word according to its senses. However, I am facing difficulties in…
Pranav S
  • 21
  • 1
2
votes
0 answers

Filter Babelnet synsets by category

I'm using Babelnet java api to query the online service: 1) I get the synset of some words by the babelnet relation .getSynsets() on a babelnet instance 2) I also have a method to get the categories of these words by the relation .getDomains(). I…
Kyle
  • 45
  • 7
1
vote
0 answers

How to extract feature in Hindi Word Sense Disambiguation task

I am using the following data set for hindi WSD , एक बार वीरगढ़ राज्य की महारानी का हार कहीं खो गया । महारानी को हार बहुत प्रिय था । उन्होंने हार ढूंढने की बहुत कोशिश की पर वह नहीं मिला । हार के लिए महारानी को बहुत परेशान देखकर राजा ने घोषणा करवा…
Lubna Khan
  • 91
  • 1
  • 8
1
vote
1 answer

WS Discovery vs. SSDP - Pros and Cons

I am facing an issue with the SSDP (Simple Service Discovery Protocol) to discover the devices on the same local network but on different subnets. Can I do that to discover the devices that are on the different subnets with the WSD (Web Service…
1
vote
1 answer

entity recognition and disambiguation api

I am looking for entity recognition and disambiguation API or library. I found JIGSAW algorithm which does WSD but at individual word level, so it can not recognize "financial institution" or "interest rate" as one unit, even that these units can be…
1
vote
1 answer

Soap Unable to connect from one server yet the same file connects from another

I have this soap request I am working on. I am using wsdl to send the requests and all is good when I do it from my local machine(the development environment). The problem is when I move the same file to the live server (Centos) then I get Could not…
Kevin Kaburu
  • 504
  • 4
  • 19
1
vote
1 answer

I have a database and API for hindi wordnet. I want to access this wordnet from NLTK python. Is there any way to add our own wordnet into NLTK?

I have a database and API for hindi wordnet. I want to access this wordnet from NLTK python, so as to use NLTK Wordnet functions with our wordnet. Is there any way to add our own wordnet into NLTK? Or Are there any tools for Word Sense…
0
votes
1 answer

"An error occurred when verifying security for the message." WSDL Zeep

i am trying to get information from a wsdl service but i am keep getting the same error over and over again. I am wondering what could be the reason behind this. Here is my code from zeep import Client import certifi import os import xlrd import…
Fatih Enes
  • 75
  • 5
1
2