Stanford University is a research university located in Palo Alto, CA.
-1
votes
0answers
8 views
Stanford core nlp1.3.5 update trouble
After updating the Stanford core nlp1.3.5, I found no package edu.stanford.nlp.semgrex. semgrexPattern and SemgrexMatcher were also missing. Which methods I can use in the new package, and how?
1
vote
1answer
86 views
German stanford parser [closed]
I am using the german version of the stanford parser to parse short german sentences into a parse tree. An example:
Hallo, mein Name ist Luke.
(ROOT
(S (ITJ Hallo) ($, ,)
(NP (PPOSAT mein) (NN ...
0
votes
1answer
53 views
Unrecognized selector sent to instance Stanford Calculator App [closed]
I was trying to implement the Stanford Calculator App for the first time and ran into Unrecognized selector sent to instance whenever I click on an Operation Button. However, enterPressed: works fine. ...
1
vote
1answer
30 views
Stanford POS Tagger not tagging Chinese text
I'm using Stanford POS Tagger (for the first time) and while it tags English correctly, it does not seem to recognize (Simplified) Chinese even when changing the model parameter. Have I overlooked ...
0
votes
2answers
31 views
addMouseListener to the canvas in Rubber Banding
I'm trying to solve Rubber Banding problem of Stanford CS106A. As per Java Doc on addMouseListener() one needs a listener to use it. As per the solution to this problem no listener is used but when I ...
0
votes
1answer
169 views
How do I use python interface of Stanford NER(named entity recogniser)?
I want to use Stanford NER in python using pyner library.Here is one basic code snippet.
import ner
tagger = ner.HttpNER(host='localhost', port=80)
tagger.get_entities("University of California ...
0
votes
2answers
55 views
Need help running program in Eclipse
I just started taking the Stanford CS106a course on iTunes, but I'm running in to problems with Eclipse. Here's my code:
/*
* File: Add2Integers.java
* -----------------------
* A simple ...
1
vote
1answer
183 views
java program to get parse score of a sentence using stanford parser
I am able to get the output of Tags and words for the sentence like "My name is Rahul." as
My/PRP$, name/NN, is/VBZ, Rahul/NNP, ./.]
with the program:
LexicalizedParser lp = ...
0
votes
1answer
29 views
Can't read calls to the ACM mouseMoved method
I'm working through the Stanford CS106A lectures and have hit a snag in the breakout project.
After I addMouseListeners(), I cannot detect mouseMoved calls.
However if I rename mouseMoved() to ...
-1
votes
1answer
543 views
Finding the average rating of each of the movies SQL
I'm currently taking the online stanford class on databases, If you could help me solve this sql problem I would greatly appreciate it. Sorry I'm a complete noob.
Table Movie:
mID | title | year | ...
0
votes
0answers
121 views
LexicalizedParser sample code not working
I can't get this simple code to run:
LexicalizedParser lp = new LexicalizedParser("englishPCFG.ser.gz");
String sent = "This is one last test!";
lp.apply(sent).pennPrint();
I get the Error: "The ...
0
votes
2answers
59 views
Stanford NER - Heap space error
I am using Stanford NER in my web application and english.muc.7class.distsim.crf.ser.gz (16 MB size)as a classifier.When I try to deploy and run my application am getting a heap space - Out of Memory ...
1
vote
0answers
337 views
Exception in Stanford Parser sample code? [closed]
The following is sample code to use Stanford Parser API to create a tree output from an array of tokenized strings. This code is available here.
import java.util.*;
import edu.stanford.nlp.trees.*;
...
-1
votes
1answer
120 views
Eclipse won't start to run Stanford karel [closed]
I am a beginner in programming and I decided to take the Stanford online Intro to Programming Methodology course (cs106a). I followed the instructions and unzipped the Eclipse files onto my computer. ...
0
votes
2answers
559 views
How to use Stanford Parser to get POS tags using java?
I am working on a project for plagiarism detection. I need to use Stanford Parser API to get Part of Speech (POS) tags for words in sentences stored in a text file. I understand that the class ...
0
votes
2answers
107 views
Retrieving key of a Map (Stanford C++ Libraries)
I am using the Map type from the Stanford libraries. And I can easily get values, by passing it .get(key) But it occurred to me that it would be beneficial if I could retrieve it´s keys as-well. Is ...
1
vote
2answers
109 views
CS193p Assignment 4 API wont work
I can't get my API on this assignment to work.
I'm currently running the following function on startup:
- (void)viewDidLoad
{
[super viewDidLoad];
[self updatePlaces];
}
That function ...
0
votes
0answers
47 views
serial Version of Karel
I recently started to learn about Programming through iTunes U, in CS106A at Stanford through the videos. And I am now working with Karel or so to write.
I followed the instructions about downloading ...
0
votes
0answers
87 views
What is Stanford Computer Science Department famous for? [closed]
Hi, I know that Stanford CS Department is awesome. I once used its Stanford Parser. It was great work. Is their any other outstanding work that belongs to Stanford? Does Stanford CS have any valued ...
0
votes
1answer
108 views
C++ Stanford libraries: Iterator over Vector class (array)
These iterator in the collection classes confuses me. I got a Map with key of string, and value being a Vector class (similar to an array). As i understand it my iterator variable it is assigned to ...
-1
votes
1answer
85 views
Setting non-collapsed dependencies on Stanford Parser
I am using Stanford Parser Java API in order to perform syntactic analysis, and I want to choose "non-collapsed dependencies that do not preserve a tree structure" mode.
In the manual, it says how ...
0
votes
0answers
32 views
How to save and load Tree in and from text file with stanford lex parser?
I am building Trees using following lines.
LexicalizedParser lp = LexicalizedParser.loadModel("englishPCFG.ser.gz");
Tree smsTree = lp.apply("how to store Tree to file & then Load !");
I want ...
0
votes
1answer
114 views
App working in IOS 5.0 but not on IOS 5.1 [closed]
I am trying to test an app from that I created by following an tutorial of Paul Hegarty from stanford university.
You can find a download link over here.
When I test it on the IOS5.0 simulator, it ...
0
votes
0answers
78 views
Why is the Stanford CS106B lexicon class crashing my C++ program? [closed]
I'm currently working through the free Stanford cs106B course and have hit a snag on one of the assignments.
The requirements include using a provided class called lexicon, but I get the following ...
0
votes
0answers
77 views
Core data does not load data in IOS 5
I am following the tutorial of Core Data from the Paul Hegarty from Stanford University. In this tutorial he is making a flickr Fetch to get some recent photos. But something strange is happening when ...
0
votes
2answers
205 views
Stanford Itunes U objective C calculator brain walkthrough minus operation
I've been using the stanford videos as a tool for learning ios programming. I have a question about the "-" operation. The walkthrough explains that for this part of code the order of operands has to ...
0
votes
1answer
169 views
Collision detection in Java ufo game
I have a simple Java game where you fire a bullet up at a moving target. Both objects are GRects. I have collision detection that checks when the ufo and bullet intersect each other, but here is the ...
0
votes
2answers
436 views
Java Heap Space error on Stanford NER using Netbeans
I am using Stanford NER to parse a sentence for getting following tags : tokenize,ssplit,pos,lemma,ner. I also increased memory in netbeans by Project->Properties->Run->VM Options to -Xms1600M ...
0
votes
3answers
206 views
Stanford cs193p Fall 2011 course made a mistake in lecture 9?
In lecture 9, the teacher said that numberOfSectionsInTableView: method returns 1 by default, but when I created my own project, I found that it returns 0 by default, and that made my table view cell ...
0
votes
2answers
372 views
CS107 Assignment file couldn't compile, missing expat.h and thread_107.h files
I was auditing cs107 at stanford online
The problem I ran into is with assignment 6, when I type "make" in terminal, the error message pops up. Basically, I miss two header files, which I guess can ...
0
votes
1answer
275 views
CS107 Assignment Files
I'm trying to run the Stanford CS107 Assignment files on my mac but whenever I try to run the binary files I get an error 'Permission denied'. If I chmod the file so I have execute permissions I get ...
0
votes
1answer
79 views
How does instantiating an object in the getter work if the setter is used first?
I'm working through the Stanford lectures, calculator tutorial. http://www.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2011-fall
In it he suggests a good technique for creating an instance of ...
0
votes
0answers
198 views
Stanford CS106b libraries for PC [closed]
I'm taking the CS106b course from Stanford University and an looking for the header files genlib.h an simplib.h. I've found them for Xcode, but I'm using a PC.
Does anyone know where I might find ...
0
votes
1answer
272 views
What all jar files should i include to use stanford parser in my project?
I tried creating a new project to work on stanford parsers.
I have included stanford-postagger.jar and stanford-parser-2012-05-22-models.jar to the project.
is there anything else that I should add?
...
0
votes
0answers
155 views
Convert arabic stanford parser to .dll
I'm working in C# environment, I used the (stanford parser) for Arabic language, which is in Java.
So, I converted via IKVM to .dll, to imported in y c# project, but the source jar file was 2,393 KB, ...
0
votes
2answers
143 views
self in objective C
-(void)setFaceView:(FaceView *)faceView
{
_faceView= faceView;
self.faceView.dataSource = self;
}
Hi. I just started learning IOS programming with famous Stanford lectures on Itune. I am currently ...
0
votes
2answers
307 views
Stanford CS106B Lexicon library foreach function not working
I have played around with all library for a long time(2months maybe).
All other Collection classes like vector,stack, queue works perfectly well.
However, when i use the Lexicon Library. All the ...
0
votes
0answers
391 views
Stanford's CS106a Eclipse Assignment 1 - UnsupportedClassVersionError
First the caveats: I'm a newbie to programming. I know how to write SQL and basic html so, in general, I can probably understand a slightly technical response. However, actual programming like Java, ...
0
votes
1answer
287 views
How to print the parse tree of Stanford JavaNLP
I am trying to get all the noun phrases using the edu.stanford.nlp.* package. I got all the subtrees of label value "NP", but I am not able to get the normal original String format (not Penn Tree ...
1
vote
2answers
1k views
Good Examples: English Parsing / Natural Language Processing
I would like to make a calendar application that accepts plain english input better than those that exist. I have found Stanford's NLP which seems cool, but I was wondering if it's helpful to this ...
0
votes
0answers
240 views
How can I get the WordNet POS tag from a Stanford Parser parse tree?
I'm developing a tool for Natural Language Processing. The specific problem is: I want to ask WordNet for the hypernym hierarchy of a word. In order to do this I need the specific POS tag WordNet ...
2
votes
1answer
212 views
Issue invoking Stanford javascript library encryption function from javascript engine library in JAVA6
I am trying to invoke stanford javascript library encrytion function from javascript engine library in JAVA6.
With the below code using javascript engine library in JAVA6 i am getting following error:
...
0
votes
0answers
29 views
Saturn Build Interceptor error
I am new to saturn. I am trying to run an analysis on linux kernel. trying to use build interceptor.
I modified interceptor.config file. added the appropriate paths. ran the makefile in ...
0
votes
1answer
124 views
When does setter method get called from UIView subclass
I am taking the free Stanford course on iTunesU(193P) and we created setting up a class that is a subclass of UIView and created a public property called scale. The idea was that when we pinch, the ...
0
votes
1answer
499 views
get contents from array and show in UILabel
I am going through the iOS development videos by Stanford and am doing the assignment 1.
I am having a problem with task 4:
Add a new text label (UILabel) to your user-interface which shows ...
1
vote
1answer
1k views
Stanford Engineering Everywhere CS106B -Library code [closed]
Im just getting started with the Stanford Engineering Everywhere Course -CS 106B. However, there are some programs that refer to Stanford's custom header files, and Im not being able to locate the ...
0
votes
1answer
106 views
Protege Stanford JessTab error
im trying to explore n getting familiar with JessRules. i have installed jessrules ver 7 engine into protege 3.4.8.
first im creating person class without problem:
Jess> (defclass Person (is-a ...
1
vote
0answers
240 views
Stanford dependency parser can not deal with some Chinese sentences
I'm parsing a set of Chinese sentences. Usually Stanford parser works well, but
in special cases, such as '柴油机 可燃混合气 的 形成 和 燃烧 都 是 直接 在 燃烧室内 进行 的 。' and '在 日常 行驶 中 肯定 不 可能 保持 燃油量 的 多少 , 乘客 的 胖 瘦 , ...
1
vote
1answer
230 views
Getting an error from the Stanford iOS Class, but my code seems identical
I believe I did what the instructor did verbatim (it's the famous Stanford class available in iTunes U for iOS Programming), but my app (it's a simple app) won't work and errors out if I press a ...
6
votes
6answers
1k views
CS193P Assignment 3, Hint#5 - What is the model?
I am working my way through the Stanford Fall 2011 iOS course:
http://www.stanford.edu/class/cs193p/cgi-bin/drupal/
I am onto assignment#3:
...



