raduk

Results 12 comments of raduk

I did, and they don't seem too good. That is why I am a bit puzzled about the numbers. Are these numbers (the ones reported by the "single_pass" arg) the...

I did multiple tests, on the whole test set (11490 files in both `decoded` and `reference`) and on the first 1000, and the results are similar. I checked to have...

I think I figured out the problem: the `pyrouge` package in python 2.7 generates the `rouge_conf.html` configuration file differently from the `pyrouge` in python 3.5. More precisely, the one in...

By the way, using the following is quite nice for understanding / debugging pyrouge behavior: ` pyrouge_evaluate_plain_text_files -s ../log/test/decode_tmp/decoded/ -sfp "(\d+)_decoded.txt" -m ../log/test/decode_tmp/reference/ -mfp "#ID#_reference.txt" `

This is how mine is looking: ![image](https://cloud.githubusercontent.com/assets/3809388/26460898/0d1fa8d0-4130-11e7-8443-606430591476.png)

Doesn't seem to work better, I get this exception HTTPClient::KeepAliveDisconnected: HTTPClient::KeepAliveDisconnected

I'm encountering again some issues with the batch streaming, especially with large batches. This test, added to spec/integration/rest_batch_streaming_spec.rb, fails with an exception: ``` it "can send a 20000 item batch"...

I've been looking into this issue for the last two days, and I can't figure out the exact problem. It looks like the httpclient doesn't read correctly the response from...

This is the test to add to spec/integration/rest_batch_streaming_spec.rb: ``` it "can send a 20000 item batch" do commands = [] 20000.times do |x| commands "Max " + x.to_s}] end batch_result...

I sent a pull request to add back the batch_no_streaming method meanwhile. By looking at HttpClient's code, it seems that it doesn't really support streaming. So probably the fix would...