Alex Thewsey
Alex Thewsey
Hey sorry it's taken a while - now got some extra results from longer testing! I modified the train/val/test split to 60/20/20 in line with the example (previous tests were...
I'm also seeing this on Android Firefox (menu bar at the bottom obscures the input area, with no way to scroll around it!) - but OK in Chrome (menu bar...
Finally figured it out & big facepalm time: I was pressing the stop button when I was done talking... To stop recording, right? It seemed so natural I never even...
Understand that this could be useful but agree it may be difficult to generalise... Since Textract's new [native layout analysis feature](https://aws.amazon.com/about-aws/whats-new/2023/09/amazon-textract-layout-feature-extract-paragraphs-titles-documents/) may help give a more generalisable basis than our...
With today's release of [amazon-textract-response-parser v0.4.0](https://www.npmjs.com/package/amazon-textract-response-parser/v/0.4.0), users can run the source document through Amazon Textract with [Layout analysis enabled](https://aws.amazon.com/blogs/machine-learning/amazon-textracts-new-layout-feature-introduces-efficiencies-in-general-purpose-and-generative-ai-document-processing-tasks/) and then use TRP.js to loop through the content elements which...
Hi @rob3c, my initial observations on this one (referring to [current working version test data sets](https://github.com/athewsey/amazon-textract-response-parser/tree/6b9f94531fe001c34028a02e449a5f59f593e3f6/src-js/test/data)): - On (older from around 2022) `table-example-response.json`, I see `Page` on all 84 blocks...
Thanks for asking, it certainly helps! I had some drafts towards this, but took them out to accelerate #172 over the line... Realistically I think getting it implemented would still...
Also ran in to this issue last week, installing transformers==4.22.1 pinned by a different project. `tokenizers` resolved to v0.12.1. Platform was macOS Sonoma, M2 chip. I also worked around by...
For now, un-setting `install_latest_aws_sdk` *seems* to have stabilized our configuration (based on ~3 repeated deployments)... But I feel like it might be an intermittency thing / luck-of-the-draw, rather than a...
An example flow I got working for now, which uses private/internal functions and repeats the instance type way too much: ```python sagemaker_model._init_sagemaker_session_if_does_not_exist('ml.m5.xlarge') sagemaker_model._create_sagemaker_model('ml.m5.xlarge') predictor.update_endpoint( model_name=sagemaker_model.name, initial_instance_count=1, instance_type='ml.m5.xlarge', ) ``` ...Speaking...