Skip to main content

Posts

Showing posts from January, 2024

AI-powered document indexing helping title companies

New utilization of conversational AI (artificial intelligence) and large language models (LLM) in document indexing by Columbus, Ohio-based Razi Title is already providing new efficiency for clients. In an exclusive interview with The Title Report, Razi Title Chief Technology Officer Robert Zwink outlined these additions to his company’s platform, which were made in December. “In our experience, there’s generally always a backlog of paperwork via title plants or data warehouses or starter management systems,” he said. “It all seems to lead back to there being a stack of paper everywhere. In order to streamline that, you have to know what you’re working with. “The ability to use AI to classify documents right down to the page level can help clear out those stacks.As we clear out paperwork, there’s a consumer benefit. When you think about the wait that can happen, or the variability in closings, it’s often a stack of paperwork that you have to get through. AI can streamline operations an...

AI-powered document indexing helping title companies

New utilization of conversational AI (artificial intelligence) and large language models (LLM) in document indexing by Columbus, Ohio-based Razi Title is already providing new efficiency for clients. In an exclusive interview with The Title Report, Razi Title Chief Technology Officer Robert Zwink outlined these additions to his company’s platform, which were made in December. “In our experience, there’s generally always a backlog of paperwork via title plants or data warehouses or starter management systems,” he said. “It all seems to lead back to there being a stack of paper everywhere. In order to streamline that, you have to know what you’re working with. “The ability to use AI to classify documents right down to the page level can help clear out those stacks.As we clear out paperwork, there’s a consumer benefit. When you think about the wait that can happen, or the variability in closings, it’s often a stack of paperwork that you have to get through. AI can streamline operations an...

Harnessing Advanced Machine Learning for Text Classification at Razi Title: A Technical Exploration

At Razi Title, our commitment to innovation drives us to explore and implement cutting-edge technologies. In this blog, I'll take you through our journey in developing a sophisticated text classification model using TensorFlow, delving into the advanced machine learning techniques we've employed. import os from layers.attention_layers import ScaledDotProductAttention # Set environment variable to make TensorFlow use CPU os.environ["CUDA_VISIBLE_DEVICES"] = "" Our journey begins with preparing our machine learning environment. Choosing TensorFlow, a robust and versatile framework, allows us to build complex models with relative ease. The decision to run computations on the CPU is opportunistic, as the PC we used has a modern i9 processor which out performed the Nvidia 12GB Vram video card. Extra bonus, ensuring our model remains deployable in diverse environments without depending on specific hardware capabilities helps. import os import numpy a...