search for: synset

Displaying 2 results from an estimated 2 matches for "synset".

Did you mean: sunset
2006 Aug 01
1
Re-using a Listing screen form
...ng page, it would be nice to allow the user to display a subset of the records, for example, by filtering. For example, I have the following Controller Listing and Filtering actions: def list @eng_sense_pages, @eng_senses = paginate :eng_senses, :per_page => 10 end def filter_by_synset_offset @eng_senses = EngSense.find_by_synset_offset(params[:synset_offset]) if @eng_senses redirect_to :action => ''list'' else flash[:notice] = "Unable to find English synset offset: #{:synset_offset}" end end However, the resultin...
2010 May 14
0
word similarities using the R Wordnet package
...ot;good" and such, for use as a naive sentiment analyzer. I am aware of Wordnet implementations in Python and Perl, and have also grappled with calling Perl modules within R but my search for a pure R implementation continues. The Wordnet package in R is great for other lexical tasks (finding synsets, etc.) and currently does not support the distance/similarity computations. Would it be worth the effort to re-create the structure of Wordnet in R and then query it? Or am I better off learning more about rJava and then calling mature Java implementations within R for my purposes? I understand...