Form recognizer model detecting irrelevant data in handwritten form - machine-learning

Trained some handwritten pdf forms through FOTT but model is not recognizing the letter correctly, taking irrelevant characters: https://i.stack.imgur.com/9YxRd.jpg

Are you using the latest GA version of Form Recognizer located here - https://formrecognizer.appliedai.azure.com/studio
API version 2022-08-31 ?
If you can share the document with Form Recognizer Contact Us formrecog_contact#microsoft.com we can look into this and assist.

Related

Has anyone created a Label, Divider, or Instructions FieldType for Umbraco Contour?

I am surprised there isn't an Umbraco Contour field out-of-the-box that lets form editors write RichText or at least plain text instructions in-between the form fields, so that form authors can add more detailed instructions scattered throughout a form.
Does anyone know if this exists?
I found this suggestion in 2011: http://our.umbraco.org/forum/umbraco-pro/contour/22661-Place-plain-text-in-contour-form
My first attempt, I put together a custom field for Contour 3.0.21 and Umbraco 7.1.x, but I am not too keen on how the form results table now has an empty column. Instead, I would prefer that the content is placed in the form without creating a column in the result table, and also without emailing an empty field in the "Send Email" workflow email.
Have you tried taking a look at the Contour Contrib project for Contour?
http://our.umbraco.org/projects/developer-tools/contour-contrib
There is a Label fieldtype there that I believe does what you're looking for. If it does, you can get the source for that project and use that to create more field types that meet your needs. I hope that helps!

Load a survey with multiple uitextfield and uitextview from local text file

I am trying to develop an application one of whose features is a survey form. This survey could change from time to time. So I thought, the best way to go about it would be to notify the user of a newer version of the survey and let him download it as a text file. Once downloaded, I would process the text file for some pre-defined tags and then load it as a survey form on to his screen with multiple text fields and textviews. Are there any sample codes available that show how we can code these different tags that can processed later before showing a survey scroll view.
For example: I can have [Question] for a textview and [Empty] for a textfield and [Multiple] for a multiple choice answer possibility. Similarly [[Start]] and [[End]] for starting and ending the text to be processed.
I have tried to search online for better methods of doing this. I came across this question where a webview is suggested, but I need the survey to be available offline so the user could save his answers and continue/change them later.
You should probably use 1 of the many standard formats used to store and manage data like XML:
<Question text="What is...?" />
for a basic user input question
<Question text="What is...?">
<Answer text="Option 1">
<Answer text="Option 2">
</Question>
for a multiple choice question
etc.
I don't know of any open source projects with text files, but there is an open source library that allows you to create a editable PDF. You can take a look at that and see if this library offers you what you are looking for. Anyway here is the link:
http://fastpdfkit.com/

Auto Search functionality for Schools/Universities using Asp.Net MVC

I am building a website where the user should have the capability of adding their School/University. I have noticed in LinkedIn, when i tried to type in my school name , it showed up a auto search box with all the schools, beginning with the letter i typed. How can i achieve the same functionality?
Do they save all the Universities in their database ? Or is there any Open webservices i can use that will show all the Schools/Universities ?
Thanks !
This feature is called "Auto Complete" and the text boxes are enabled with that. These allow you to filter the data required according to the characters you type in.
Please see this post for auto-complete feature implemented using jQuery.
Razor: Auto-complete text box inside jqGrid, How to bind values?
The example shown in that page lists all from the database. However, as a next phase, you can as well extend this feature to look for a WCF exposed service for universe of schools/colleges.
FYI" "GetSkillNameAutocomplete" is a method in the controller that takes a string parameter as an input (the search string) and gets the value(s).
Hope this helps!

How to click a figure and save it in a database in ruby on rails

I am currently digitalising a form for doctors, where they can input some patients data. The "basics" (check-boxes,radio-button,etc.) were pretty easy to create. I used formtastic for this.
But now to the real problem: the doctors have to mark an area in a circle (it's for breast cancer patients), where the tumor is. On paper this wasn't a problem obviously.
Is it possible to do the same with ruby on rails?
Users have to mark and save the "marked circle" . Also it would be great if the user could edit (remove the mark and/or add another mark) the circle after or before its saved.
I created a little example:
http://i49.tinypic.com/2v2wemu.jpg
(Can't include the image in my post, since I'm a new user, hope this works nevertheless)
I think this is more a javascript question.
You will work with images, and what is important to you is the image element itself, its resolution, and how to capture cursor position when a user clicks it.
start with something like
$('img').click()
and after
jquery offset

Acts As Taggable On: translate tags

I'm working with RoR and I was wondering how can I translate Acts As Taggable On tags without having to manually insert it every time I use a tag again?
Example:
I have a Post (title and body in English) and I create it with tags "shoes, dress, beauty".
I've title and body translated to Japanese in a text file, so I just need to copy/paste them (I'm using Globalize2 plugin to manage translations).
Then I need to add Japanese tags, so I search for translation and add it.
Now I know how to write these three words to Japanese, but I don't want to have to translate them every time I use the same tag.
Next time I create a post with the "shoes" tag, I want that the Japanese version already has the translated term.
What do you suggest? Abandon Acts As Taggable On and create a custom Tags model with a habtm relationship with Post? Subclass the Acts As Taggable On model?
Thanks in advance.
You should be able to simply create your own controller, views and routes and CRUD tags as you see fit by adding whatever fields you require to the db table with no need to subclass the tag model. Personally unless there's some fancy cloud calculation or so forth with this plugin I would roll your own as it's pretty basic. It would also be a good exercise to look through the plugin and gain an understanding of its functionality.

Resources