Christopher
Christopher
Dears, I'm writting ``` javascript var request = require('request'); describe('/journals', function(){ it('should work without any arguments', function(done){ request("http://localhost/api/journals", function(err, response, body){ //if(err) return console.log(err) ; expect(response.statusCode).toBe(200); done(); }); }); });...
To show a bug in the reading order, I have extracted the problematic part from a document and created an example: https://drive.google.com/file/d/17mU_P4hwUMDXXTeqIF1meC9VpS9bkznM/view?usp=sharing The order in which it is read is...
When running the following code: ``` var words = page.GetWords(NearestNeighbourWordExtractor.Instance).ToList(); var blocks = DocstrumBoundingBoxes.Instance.GetBlocks(words); var orderedBlocks = new UnsupervisedReadingOrderDetector(spatialReasoningRule: UnsupervisedReadingOrderDetector.SpatialReasoningRules.RowWise, useRenderingOrder: false).Get(blocks).ToList(); var finalBlocks = new List(orderedBlocks); ``` on the...
If I'm not wrong, a PDF has named styles. Is it possible to access them with the API ?
On document https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2835024/pdf/mt2009176a.pdf I get the following error : ``` 2021-02-22 16:25:33.4397 GetPages failed :- FileName : "mt2009176a.pdf" System.InvalidOperationException: Could not find the font with name /T1_4 in the resource...
Hi , In the loss, sounds tf.reduce_sum(tf.cast(bg_, tf.float32)) is not correct, it should be top_k, isn't it ? if ohem: # k = tf.minimum(tf.shape(rpn_cross_entropy_n)[0] / 2, 300) # # k...
Dears, Thanks a lot for this very module ! Nevertheless, it's not working very well when I'm calling it that way : node ftp_to_s3.js 3754 2>error.log.2 (using console.debug() which does...
Hi, Is it specified somewhere in the paper that a major difference with BERT is that you're using position embeddings at every layer ? If I see it clear :)...
Hi, I'm just wondering why you use this form in https://github.com/coreylynch/grid-lstm/blob/master/model/GridLSTM.lua#L31 local next_h = nn.CMulTable()({out_gate, nn.Tanh()(next_c)}) in the paper it is local next_h = nn.Tanh()(nn.CMulTable()({out_gate, next_c})) Thank you for your...
I got this kind of error during a POST Request from POST/api/v1/ /root/torch/install/bin/luajit: /root/torch/install/share/lua/5.1/waffle/request.lua:67: attempt to index local 'ctype' (a nil value) stack traceback: /root/torch/install/share/lua/5.1/waffle/request.lua:67: in function '_getform' /root/torch/install/share/lua/5.1/waffle/request.lua:140: in...