GithubHelp home page GithubHelp logo

habernal / feng-hirst-rst-parser-acl-2014 Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 3.0 50.49 MB

A copy of RST parser 2.01 http://www.cs.toronto.edu/~weifeng/software.html

License: BSD 2-Clause "Simplified" License

Python 100.00%

feng-hirst-rst-parser-acl-2014's People

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

feng-hirst-rst-parser-acl-2014's Issues

deadlock in crf_classifier when executing line = self.classifier.stdout.readline() in function classify(self, vectors)

My code just hangs at this line when it attempts to read from the stdout. It seems that it is a possible deadlock due with popen. As per https://docs.python.org/2/library/subprocess.html

Note Do not use stdout=PIPE or stderr=PIPE with this function as that can deadlock based on the child process output volume. Use Popen with the communicate() method when you need pipes.

If I use communicate, it works for the first sentence but then terminates with an error
subprocess I/O operation on closed file
This is because communicate also terminates the process.

To fix it, I tried to modify the code as

def classify(self, vectors):
self.classifier = subprocess.Popen( self.classifier_cmd,shell = True, stdin = subprocess.PIPE,stdout=subprocess.PIPE, stderr = subprocess.PIPE)
if self.classifier.poll():
raise OSError('crf_classifier subprocess died')
stdoutdata, stderrdata=self.classifier.communicate('\n'.join(vectors) + "\n\n") #amita add
lines = stdoutdata.splitlines()

This works but I am not sure if this could break the code elsewhere.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.