An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
Hello test sujeet,
Greetings! Thanks for raising this question in the Q&A forum.
The pattern you are describing, fields missing, values merging across fields, values landing in the wrong field, and results varying between similar documents, is a classic sign that the training set is too small and does not cover enough variation for the model to generalize reliably. Five documents is well below what Document Intelligence needs for stable extraction, and if your documents have any layout differences at all, the model has not seen enough examples to learn where field boundaries truly are.
Increase your training set size. Microsoft recommends at least five labeled samples per distinct layout variation as an absolute minimum, but for production-grade reliability you generally need considerably more, especially when fields sit close together or have variable-length content. If your document type has any variation in layout, add more labeled examples covering each variation rather than relying on five documents of a single layout.
Confirm you are using a custom neural model, not a template model. Neural models generalize much better across layout variation and are the recommended default. Template models expect a highly consistent visual layout and will produce exactly the kind of inconsistent results you describe if your documents vary even slightly in spacing, alignment, or field position. Check this under your project settings in Document Intelligence Studio.
Review your field labeling for overlap and ambiguity. If two fields are extracting into a single one, or values are landing in the wrong field, open each training document in Document Intelligence Studio and check that label bounding boxes do not overlap and that each label is tightly scoped to only the relevant text. Loosely drawn or overlapping bounding boxes are a common cause of merged or misrouted field values.
Standardize field naming and labeling consistency across all training documents. Make sure the same field is labeled the same way, in the same relative pattern, on every training document. Any inconsistency here, such as labeling a value differently on one document versus another, teaches the model conflicting patterns and directly causes inconsistent extraction on new documents.
Check document image quality and format consistency. Use one clear scan or text-embedded PDF per document rather than mixed photo quality, since OCR errors upstream of extraction will cascade into incorrect field mapping. Confirm that all training documents represent the same document type and are not silently mixing subtly different form versions.
Retrain and validate incrementally. After expanding the dataset and fixing labeling, retrain the model and test against a validation set of documents not used in training. Compare confidence scores per field. Fields with persistently low confidence usually need more labeled examples specifically covering that field's variations rather than more of the same overall document type.
If extraction remains inconsistent after increasing the dataset and confirming clean labeling, this is worth an Azure Support technical ticket referencing your Document Intelligence resource so an engineer can review the training set and model diagnostics directly.
If this answer helps you kindly accept the answer which will help others who have similar questions.
Best Regards,
Jerald Felix.