{"id":2153,"date":"2023-09-28T13:56:00","date_gmt":"2023-09-28T13:56:00","guid":{"rendered":"https:\/\/radicalbit.ai\/?p=2153"},"modified":"2026-04-23T08:51:43","modified_gmt":"2026-04-23T08:51:43","slug":"data-integrity-mlops","status":"publish","type":"post","link":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/","title":{"rendered":"MLOps and Data Integrity: a match made in Heaven"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">As Jane Austen would say, it is a truth universally acknowledged, that <strong>a machine learning model is only as good as the data it receives.<\/strong> This applies both to the data used for training it, and also to the data fed into it at inference time. The former case is self-evident; here we shall delve on the latter.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Say you have developed, trained, and deployed into production a good model which achieves good results on the right metrics: you have only done half of the work. In fact, <strong>you have to continuously monitor the performance of the model<\/strong> and be sure that it stays in top notch conditions since there are plenty of troubles which might creep in: the most common example is when <strong>Drift, both data and concept, occurs<\/strong> and the model performance start degrading over time, but other hurdles might pop up as well.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Data Integrity?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">An aspect that is often overlooked is the quality of data sent as input to a model at inference time: if this data is corrupted or anyway not of good quality, even the best model will output poor predictions.<br><strong>Radicalbit\u2019s MLOps platform<\/strong>, has a specific solution for checking data integrity and always keeping a deployed model in spick and span conditions.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Let us talk about <strong>Data Integrity<\/strong>: what this is exactly, and how Radicalbit platform can help you keep it monitored at all times.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Given an array of features sent as input to the model, there are several aspects that have to be checked to ensure its integrity, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>data type;<\/li>\n\n\n\n<li>range and categories: no overstepping of bounds;<\/li>\n\n\n\n<li>schema evolution;<\/li>\n\n\n\n<li>rate of nulls, i.e. number of missing<\/li>\n\n\n\n<li>values;<\/li>\n\n\n\n<li>outliers.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">In order to better understand all these conditions consider the following example: there is a chemical plant fitted with plenty of sensors which sends a stream of real-time readings to a model. The features sent as input to the model are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>temperature in Celsius degrees (variable of type double),<\/li>\n\n\n\n<li>pressure (variable of type double),<br>number of pellets of fuel fed to the boiler (variable of type integer),<\/li>\n\n\n\n<li>level of risk for the chemical reaction in progress (\u2018green\u2019, \u2018orange\u2019, \u2018red\u2019) and the output is how long the production process will take in hours.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Let us consider all the aforementioned aspects of Data Integrity.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Data type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If the thermometer reads a value of 20, but for some reasons it is sent to the model as \u201920\u2019 (viz. as a string) the data type is incorrect and the model is not able to use this information. An alert must be triggered to inform users about the data type problem in this specific record.<br>Likewise, if the value for the number of pellets is not an integer (e.g. 3.5) an alert with this specific information is triggered and sent to the users, who can hence take appropriate actions to fix the problem.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Range and categories: no overstepping of bounds<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Imagine the thermometer sends a value of -300: this is clearly an incorrect reading since it is below 0\u00b0 Kelvin. Likewise, if the level of risk has value equal to \u2018cherry\u2019, this is an incorrect reading as well, since the only admissible values are \u2018green\u2019, \u2018orange\u2019 and \u2018red\u2019.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>In Radicalbit\u2019s MLOps platform one can set up rules defining ranges for numerical variables and a list of admissible values for categorical ones<\/strong>: if a violation occurs an alert is triggered, with all relevant information sent to the specific alert channel.<br>Clearly these rules can be updated, and for instance ranges can be modified.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Schema Evolution<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In our MLOps platform we offer a fully fledged solution for carrying out <strong>both data pre-processing (before model inference) and post-processing (after model inference), and therefore there is a complete AI data pipeline.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The data are encoded as an <strong>AVRO schema<\/strong>, which can evolve if new fields (which must be optional, i.e. nullable) are added after its creation. Now, imagine that the chemical plant adds new sensors for reading the humidity level and therefore the schema evolves. Clearly it is crucial to receive an alert in order to update pre and post-processing pipeline, and, if desired, to create a new version of the ML model trained with the new variable as well when enough training data is collected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Rate of Nulls<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">So far we have dealt with data integrity related to a single data record, but more complex verifications can be carried out as well.<br><strong>Radicalbit\u2019s platform users can set up rules related to the rate of null values in a given data window<\/strong>, so for instance if in the last received 100 readings there are more than 10 null values, an alert is triggered and all information about the null values are sent to the chosen alert channel. This is especially important because an increase in the rate of null values can signal a problem with the sensors or over the communication lines, and therefore it is paramount to fix it as soon as possible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Outliers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>An outlier is a data point that differs significantly from the others,<\/strong> i.e. is far from the regions where the training data is the most concentrated.<br>The crucial difference between outliers and the data described in \u00ab<em>Range and categories: no overstepping of bounds<\/em>\u00bb is that the former is a data point that can conceivably be received, although with a very low likelihood, whereas the latter are data points with values that are surely wrong.<br><strong>Detecting outliers is therefore important<\/strong> because, while they might be incorrect values, they might also be novel data, i.e. unusual but correct observations, and in this case <strong>they may indicate that anomalies are creeping in the data.<\/strong><br>Inside Helicon, sophisticated techniques and algorithms are included to detect outliers and trigger alerts when they are spotted, to help you keep a full control of all data coming in.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are interested in knowing more about our MLOps Platform, its top notch monitoring solution and how it can help you with real time monitoring of data integrity, do not hesitate to reach out.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let us talk about Data Integrity: what this is exactly, and how our MLOps platform Helicon can help you keep it monitored at all times.<\/p>\n","protected":false},"author":1,"featured_media":3362,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[28,30],"tags":[21,93,72,68,86],"class_list":["post-2153","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-by-radicalbit","tag-ai","tag-data-integrity","tag-machine-learning","tag-ml","tag-mlops"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Data Integrity and MLOps<\/title>\n<meta name=\"description\" content=\"Let&#039;s talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MLOps and Data Integrity: a match made in Heaven\" \/>\n<meta property=\"og:description\" content=\"Let&#039;s talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/\" \/>\n<meta property=\"og:site_name\" content=\"Radicalbit\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-28T13:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-23T08:51:43+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"info@radicalbit.io\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"MLOps and Data Integrity: a match made in Heaven\" \/>\n<meta name=\"twitter:description\" content=\"Let&#039;s talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"info@radicalbit.io\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/\"},\"author\":{\"name\":\"info@radicalbit.io\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#\\\/schema\\\/person\\\/de74cdd211ec3a7b59a057e090c55775\"},\"headline\":\"MLOps and Data Integrity: a match made in Heaven\",\"datePublished\":\"2023-09-28T13:56:00+00:00\",\"dateModified\":\"2026-04-23T08:51:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/\"},\"wordCount\":1012,\"publisher\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\",\"keywords\":[\"ai\",\"data integrity\",\"machine learning\",\"ML\",\"MLOps\"],\"articleSection\":[\"Blog\",\"by Radicalbit\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/\",\"url\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/\",\"name\":\"Data Integrity and MLOps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\",\"datePublished\":\"2023-09-28T13:56:00+00:00\",\"dateModified\":\"2026-04-23T08:51:43+00:00\",\"description\":\"Let's talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#primaryimage\",\"url\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\",\"contentUrl\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg\",\"width\":1600,\"height\":900,\"caption\":\"Data Integrity MLOps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/resources\\\/blog\\\/data-integrity-mlops\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MLOps and Data Integrity: a match made in Heaven\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#website\",\"url\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/\",\"name\":\"Radicalbit\",\"description\":\"Simpler, faster, better MLOps\",\"publisher\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#organization\",\"name\":\"Radicalbit\",\"url\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/radicalbit__RGB__logo-horizontal-positive-e1701861883280.webp\",\"contentUrl\":\"https:\\\/\\\/radicalbit.ai\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/radicalbit__RGB__logo-horizontal-positive-e1701861883280.webp\",\"width\":1570,\"height\":405,\"caption\":\"Radicalbit\"},\"image\":{\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/6639929\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/radicalbit.ai\\\/it\\\/#\\\/schema\\\/person\\\/de74cdd211ec3a7b59a057e090c55775\",\"name\":\"info@radicalbit.io\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g\",\"caption\":\"info@radicalbit.io\"},\"sameAs\":[\"https:\\\/\\\/radicalbit.ai\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data Integrity and MLOps","description":"Let's talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/","og_locale":"it_IT","og_type":"article","og_title":"MLOps and Data Integrity: a match made in Heaven","og_description":"Let's talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.","og_url":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/","og_site_name":"Radicalbit","article_published_time":"2023-09-28T13:56:00+00:00","article_modified_time":"2026-04-23T08:51:43+00:00","og_image":[{"width":1600,"height":900,"url":"http:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","type":"image\/jpeg"}],"author":"info@radicalbit.io","twitter_card":"summary_large_image","twitter_title":"MLOps and Data Integrity: a match made in Heaven","twitter_description":"Let's talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.","twitter_image":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","twitter_misc":{"Scritto da":"info@radicalbit.io","Tempo di lettura stimato":"6 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#article","isPartOf":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/"},"author":{"name":"info@radicalbit.io","@id":"https:\/\/radicalbit.ai\/it\/#\/schema\/person\/de74cdd211ec3a7b59a057e090c55775"},"headline":"MLOps and Data Integrity: a match made in Heaven","datePublished":"2023-09-28T13:56:00+00:00","dateModified":"2026-04-23T08:51:43+00:00","mainEntityOfPage":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/"},"wordCount":1012,"publisher":{"@id":"https:\/\/radicalbit.ai\/it\/#organization"},"image":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#primaryimage"},"thumbnailUrl":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","keywords":["ai","data integrity","machine learning","ML","MLOps"],"articleSection":["Blog","by Radicalbit"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/","url":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/","name":"Data Integrity and MLOps","isPartOf":{"@id":"https:\/\/radicalbit.ai\/it\/#website"},"primaryImageOfPage":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#primaryimage"},"image":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#primaryimage"},"thumbnailUrl":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","datePublished":"2023-09-28T13:56:00+00:00","dateModified":"2026-04-23T08:51:43+00:00","description":"Let's talk about Data Integrity: what is it, and how our MLOps platform can help you keep it monitored at all times.","breadcrumb":{"@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#primaryimage","url":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","contentUrl":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/12\/Helicon-and-Data-Integrity_-a-match-made-in-Heaven.jpg","width":1600,"height":900,"caption":"Data Integrity MLOps"},{"@type":"BreadcrumbList","@id":"https:\/\/radicalbit.ai\/it\/resources\/blog\/data-integrity-mlops\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/radicalbit.ai\/it\/"},{"@type":"ListItem","position":2,"name":"MLOps and Data Integrity: a match made in Heaven"}]},{"@type":"WebSite","@id":"https:\/\/radicalbit.ai\/it\/#website","url":"https:\/\/radicalbit.ai\/it\/","name":"Radicalbit","description":"Simpler, faster, better MLOps","publisher":{"@id":"https:\/\/radicalbit.ai\/it\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/radicalbit.ai\/it\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/radicalbit.ai\/it\/#organization","name":"Radicalbit","url":"https:\/\/radicalbit.ai\/it\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/radicalbit.ai\/it\/#\/schema\/logo\/image\/","url":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/11\/radicalbit__RGB__logo-horizontal-positive-e1701861883280.webp","contentUrl":"https:\/\/radicalbit.ai\/wp-content\/uploads\/2023\/11\/radicalbit__RGB__logo-horizontal-positive-e1701861883280.webp","width":1570,"height":405,"caption":"Radicalbit"},"image":{"@id":"https:\/\/radicalbit.ai\/it\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/6639929\/"]},{"@type":"Person","@id":"https:\/\/radicalbit.ai\/it\/#\/schema\/person\/de74cdd211ec3a7b59a057e090c55775","name":"info@radicalbit.io","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/de37315918a122d6c01d47d2bb49129107f9f40152dbc5c8272aafd9ed5d5bd7?s=96&d=mm&r=g","caption":"info@radicalbit.io"},"sameAs":["https:\/\/radicalbit.ai"]}]}},"_links":{"self":[{"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/posts\/2153","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/comments?post=2153"}],"version-history":[{"count":7,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/posts\/2153\/revisions"}],"predecessor-version":[{"id":11627,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/posts\/2153\/revisions\/11627"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/media\/3362"}],"wp:attachment":[{"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/media?parent=2153"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/categories?post=2153"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/radicalbit.ai\/it\/wp-json\/wp\/v2\/tags?post=2153"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}