<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>double Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/double/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/double/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Sat, 15 Apr 2023 01:44:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>CSS Boarding Style:</title>
		<link>https://www.aiuniverse.xyz/css-boarding-style/</link>
					<comments>https://www.aiuniverse.xyz/css-boarding-style/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 09:24:44 +0000</pubDate>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[absolute]]></category>
		<category><![CDATA[boarder properties]]></category>
		<category><![CDATA[css boarding style]]></category>
		<category><![CDATA[css position properties]]></category>
		<category><![CDATA[dashed]]></category>
		<category><![CDATA[dotted]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[fixed]]></category>
		<category><![CDATA[groove]]></category>
		<category><![CDATA[inset]]></category>
		<category><![CDATA[outset]]></category>
		<category><![CDATA[relative]]></category>
		<category><![CDATA[ridge]]></category>
		<category><![CDATA[solid]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[sticky]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=16369</guid>

					<description><![CDATA[<p>We have eight style in CSS 2. dotted: This style creates a dotted line around the element. 3. dashed: This style creates a dashed line around the <a class="read-more-link" href="https://www.aiuniverse.xyz/css-boarding-style/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/css-boarding-style/">CSS Boarding Style:</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>We have eight style in CSS</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="923" height="472" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/border-types.webp" alt="" class="wp-image-16462" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/border-types.webp 923w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/border-types-300x153.webp 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/border-types-768x393.webp 768w" sizes="(max-width: 923px) 100vw, 923px" /></figure>



<ol class="wp-block-list">
<li><strong>solid:</strong> This style is used to creates a solid line around the element.</li>
</ol>



<pre class="wp-block-code"><code>border-style: solid;
</code></pre>



<p><strong>2. dotted: </strong>This style creates a dotted line around the element.</p>



<pre class="wp-block-code"><code>border-style: dotted;
</code></pre>



<p><strong>3. dashed:</strong> This style creates a dashed line around the element.</p>



<pre class="wp-block-code"><code>border-style: dashed;
</code></pre>



<p><strong>4. double:</strong> It is used to creates a double line around the element.</p>



<pre class="wp-block-code"><code>border-style: double;
</code></pre>



<p><strong>5. inset:</strong> This style creates a 3D inset effect around the element.</p>



<pre class="wp-block-code"><code>border-style: inset;
</code></pre>



<p><strong>6. outset:</strong> The <code>outset</code> value is a border style property in CSS that can be used to define a 3D-like border with a raised or sunken appearance.</p>



<pre class="wp-block-code"><code>border-style: outset;</code></pre>



<p><strong>7. groove:</strong> This style creates a 3D groove effect around the element.</p>



<pre class="wp-block-code"><code>border-style: groove;
</code></pre>



<p><strong>8. ridge:</strong> This style creates a 3D ridge effect around the element.</p>



<pre class="wp-block-code"><code>border-style: ridge;
</code></pre>



<p><strong>Boarder Properties:</strong> </p>



<p>In CSS, It gives several properties to control the borders of an HTML element.</p>



<p><strong>Some of the most commonly used border properties:</strong></p>



<ol class="wp-block-list">
<li><strong><code>border-style</code>:</strong> This property controls the style of the border, such as solid, dashed, dotted, double, groove, ridge, inset, and outset.</li>



<li><code><strong>border-width</strong></code>: This property sets the width of the border. It can be a specific length, such as <code>1px</code>, or one of the following keywords: thin, medium, or thick.</li>



<li><strong><code>border-color</code>:</strong> This property sets the color of the border. It can be any valid color value, such as a hex code, an RGB value, or a named color.</li>



<li><code><strong>border-radius</strong></code>: This property sets the radius of the border corners. It can be a specific length, such as <code>5px</code>, or a percentage of the element&#8217;s size, such as <code>50%</code>.</li>



<li><strong><code>border</code>:</strong> This is a shorthand property that combines all the above border properties into a single declaration. For example, <code>border: 1px solid black</code> sets a 1-pixel solid black border.</li>
</ol>



<p><strong>CSS Position Properties:</strong> Left, Right, Top, Button</p>



<h2 class="wp-block-heading">Position in CSS</h2>



<p>By using CSS position we can change the place of an element from one place to another place.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="861" height="480" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/CSS-Position.webp" alt="" class="wp-image-16465" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/CSS-Position.webp 861w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/CSS-Position-300x167.webp 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/CSS-Position-768x428.webp 768w" sizes="(max-width: 861px) 100vw, 861px" /></figure>



<p>They have Five value of CSS position.</p>



<ol class="wp-block-list">
<li>Static</li>



<li>Relative</li>



<li>Fixed</li>



<li>Sticky</li>



<li>Absolute</li>
</ol>



<p>In css position we are using top, button, left, right to the change of the position of an element.</p>



<h2 class="wp-block-heading"><strong>Position Static:</strong></h2>



<p>Static means constant. By using position static we can&#8217;t change the place of position.</p>



<p>Static is the by default value of css position.</p>



<h2 class="wp-block-heading"><strong>Position Relative:</strong></h2>



<p>By using position relative we can change the place of element from its parent position.</p>



<p><strong>Example:</strong></p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;
&lt;head&gt;
    
    &lt;title&gt;Document&lt;/title&gt;
    &lt;style&gt;
        div{
            width: 20px;
            padding: 50px;
            background-color: rgb(255, 0, 234);
            border-radius: 100%;
            position: relative;
            top: 100px'
            left  300px;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div&gt;CSS&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</code></pre>



<p><strong>Output:</strong></p>



<figure class="wp-block-image size-full"><img decoding="async" width="591" height="312" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/p.png" alt="" class="wp-image-16371" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/p.png 591w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/p-300x158.png 300w" sizes="(max-width: 591px) 100vw, 591px" /></figure>



<h2 class="wp-block-heading"><strong> Position Fixed:</strong></h2>



<p>In position fixed internally the element will take the value and it will be fixed in the position.</p>



<p>In position fixed from the beginning of scrolling the page of the element will not move anywhere, the element will be constant in the given position.</p>



<p><strong>Example:</strong></p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;

&lt;head&gt;

    &lt;title&gt;Document&lt;/title&gt;

    &lt;style&gt;
        img {
            position: fixed;
            top: 100 px;
            left: 300px;

        }
    &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;p&gt;Lorem ipsum dolor sit, amet consectetur adipisicing elit. Sint quam, distinctio, debiti
        nulla eos doloribus blanditiis libero at consequatur consectetur. Commodi, natus! Enim, recusandae omnis id
        impedit sequi nulla dolor&lt;img
            src="https://images.unsplash.com/photo-1508919801845-fc2ae1bc2a28?ixlib=rb-4.0.3&amp;ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8aW1nfGVufDB8fDB8fA%3D%3D&amp;w=1000&amp;q=80"
            alt=" " width="200px " height="200px "&gt; deserunt consequatur laudantium nesciunt, excepturi, dolorum
        deleniti unde
        ducimus
        minima eum obcaecati nam! Fugit corporis impedit, aut quibusdam iste assumenda blanditiis consectetur quas
        corrupti perspiciatis odio natus neque est explicabo velit ab cum beatae minima hic eligendi sapiente qui rem
        ratione. Amet accusamus aut quibusdam ducimus tempora fugiat molestiae debitis corporis, consequatur commodi
        esse ratione eum eaque, dicta veritatis ex quis est sint? Minus commodi ea rerum animi dolor magnam laudantium
        laboriosam recusandae porro optio corporis tempore perspiciatis, earum quis
        velit cum maiores fugiat doloremque, quod minus expedita quas aspernatur reprehenderit sunt. Eligendi similique
        voluptatum dolorum cupiditate, vero libero delectus exercitationem consectetur et, molestias nesciunt non
        laudantium quaerat veritatis, dolorem provident architecto obcaecati. Hic quibusdam voluptas laudantium libero
        numquam adipisci voluptate? Quam suscipit aut consequuntur ullam officiis voluptate facere culpa doloremque
        repudiandae iste, quae possimus odio, fuga cumque debitis cupiditate! Quo, repellat. Qui repellat, minus illo
        iure voluptatum tenetur nisi dicta ut, quae voluptatibus veniam. Quia tempore suscipit similique fuga sed vitae,
        neque vero dolore a culpa eos quod ullam magnam totam magni consequuntur nihil ducimus explicabo? Id dolore
        reprehenderit quia, vitae excepturi, eligendi assumenda ex vel at nisi quibusdam porro dolores perspiciatis
        dolorum consequatur culpa. Quos, rem accusantium? Voluptatem earum reprehenderit, ipsa pariatur enim, provident
        rerum doloribus, ullam voluptatum harum deserunt! Placeat totam rem aliquam culpa earum repellat neque, velit
        consectetur quo odit explicabo modi animi reiciendis at delectus ratione harum impedit, incidunt omnis. Esse
        eius eum ratione, nobis expedita hic ullam, cumque molestiae odit consequuntur id ad maxime inventore
        distinctio. Error ullam corporis corrupti illum quidem perspiciatis rerum? Voluptatibus molestiae temporibus
        laudantium harum animi non impedit vel, iusto vero quos nam neque ea amet aliquam atque, facilis assumenda?
        Ratione assumenda eligendi, beatae numquam quam inventore quos hic aliquam quas voluptatibus voluptates quo
        rerum blanditiis obcaecati vel magnam consequatur eos debitis ad quibusdam quidem nostrum, perferendis esse
        modi? Alias explicabo dolore quasi est accusamus maxime repellendus id impedit soluta reprehenderit reiciendis
        perferendis corporis, aliquid sed quis in delectus aut dolorum doloribus quos earum voluptatem rerum.
        Necessitatibus voluptate, deserunt cupiditate assumenda expedita incidunt quibusdam excepturi, adipisci ullam
        quisquam facilis mollitia! Necessitatibus maiores repudiandae mollitia odio commodi laboriosam nihil asperiores,
        accusantium, officiis dolores deleniti dolorum, illo molestias accusamus laborum omnis animi numquam quas? Nulla
        odit explicabo doloribus ab iure, a adipisci, autem corporis cum vel, veniam minus animi cumque eos! Placeat
        minus, officiis facere consequatur, facilis explicabo alias fuga sapiente deserunt a quod qui cum. Natus
        reprehenderit assumenda perspiciatis inventore quibusdam tempore atque vel aperiam nostrum cum, ullam placeat
        libero quo aliquam molestiae quam consequuntur, officia numquam modi. Molestias consequatur aperiam id autem,
        recusandae repellat voluptates sapiente similique obcaecati minus rem asperiores facere reprehenderit, quod,
        illum aspernatur distinctio eligendi. Delectus alias reprehenderit recusandae incidunt, provident officia rerum    quam veritatis ipsa! Quas accusamus adipisci animi sunt quasi. Corrupti, sed. Corporis amet error ex ipsa natus
        quibusdam velit, tempore quos tenetur quam excepturi eum omnis nostrum animi at. explicabo nam distinctio labore
        officiis autem cum dicta hic
        magnam, in vel maxime ipsam adipisci ab assumenda repellat. Perspiciatis!&lt;/p&gt;

&lt;/body&gt;

&lt;/html&gt;</code></pre>



<p><strong>Output:</strong> </p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/f-1024x576.png" alt="" class="wp-image-16372" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/f-1024x576.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/f-300x169.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/f-768x432.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/f.png 1366w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading"><strong>Position Sticky:</strong> </h2>



<p>In css sticky the element will move in the beginning but when the element will teach to the fived value it will be constant or fixed in that position.</p>



<p><strong>Example:</strong></p>



<pre class="wp-block-code"><code> &lt;!DOCTYPE html&gt;
&lt;html lang="en"&gt;

&lt;head&gt;

    &lt;title&gt;Document&lt;/title&gt;

    &lt;style&gt;
        h1 {
            position: sticky;
            top: 0;

        }
    &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;

    &lt;p&gt;Lorem, ipsum dolor sit amet consectetur adipisicing elit. Laborum accusantium voluptatum vitae at odio, debitis
        est incidunt harum? Magni blanditiis autem at laborum, corrupti deleniti, quae illum reprehenderit animi
        accusamus architecto accusantium quas nulla ab dicta nam, quasi quidem pariatur aliquid cupiditate enim? Vero
        debitis ab quos quaerat, ut vel, porro dignissimos, repellendus illum facilis nostrum consequatur dolore
        Consequuntur, totam at corrupti commodi velit voluptatibus porro illo! Expedita ipsa dignissimos dicta eligendi
        quisquam voluptatibus explicabo, totam natus? Ipsam quisquam debitis repellat quibusdam consectetur. Quos
        repellat repudiandae non amet aut, &lt;h1&gt;CSS position&lt;/h1&gt;sequi commodi dignissimos alias nulla voluptate, quas earum eum aliquid
        exercitationem dolore numquam debitis ea totam libero corrupti molestiae officiis recusandae aspernatur eaque?
        Ipsa magnam architecto, doloribus quos qui, sequi aliquam voluptatem quibusdam quia impedit dolores laudantium
        totam eaque provident voluptates voluptate at ipsam a. Nam consectetur vitae quisquam dignissimos rem tempore
        officia debitis, soluta veniam magni itaque saepe sint tenetur. Ab totam atque sequi, quidem asperiores officia
        aliquid dolores aliquam molestias quo natus quisquam voluptatum. Fugit inventore ratione vitae error et
        &lt;/p&gt;
&lt;/body&gt;

&lt;/html&gt;</code></pre>



<p><strong>Output:</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="304" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/01-1-1024x304.png" alt="" class="wp-image-16380" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/01-1-1024x304.png 1024w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/01-1-300x89.png 300w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/01-1-768x228.png 768w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/01-1.png 1366w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<h2 class="wp-block-heading">Position Absolute:</h2>



<p>By using position absolute we can attach the child element to the nearest relative parent.</p>



<p>For position absolute we need parent child relationship between the element(chain &#8211; like structure).</p>



<p>In which parent we want to attached the child element to that parent give position relative and to the child element give position: absolute</p>



<pre class="wp-block-code"><code>&lt;!DOCTYPE html&gt;  
&lt;html&gt;  
&lt;head&gt;  
&lt;style&gt;  
h2 {  
    position: absolute;  
    left: 150px;  
    top: 250px;  
}  
&lt;/style&gt;  
&lt;/head&gt;  
&lt;body&gt;  
&lt;h2&gt;This heading has an absolute position&lt;/h2&gt;  
&lt;p&gt; The heading below is placed 150px from the left and 250px from the top of the page.&lt;/p&gt;  
&lt;/body&gt;  
&lt;/html&gt;  

</code></pre>



<p><strong>Output:</strong></p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="613" height="374" src="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/ppp.png" alt="" class="wp-image-16407" srcset="https://www.aiuniverse.xyz/wp-content/uploads/2023/04/ppp.png 613w, https://www.aiuniverse.xyz/wp-content/uploads/2023/04/ppp-300x183.png 300w" sizes="auto, (max-width: 613px) 100vw, 613px" /></figure>
<p>The post <a href="https://www.aiuniverse.xyz/css-boarding-style/">CSS Boarding Style:</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/css-boarding-style/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Data’s Double Edges: How To Use Machine Learning To Solve The Problem Of Unused Data In Risk Management</title>
		<link>https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/</link>
					<comments>https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Thu, 17 Jun 2021 05:35:21 +0000</pubDate>
				<category><![CDATA[Machine Learning]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[Machine learning]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Risk]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=14365</guid>

					<description><![CDATA[<p>Source &#8211; https://www.forbes.com/ Gary M. Shiffman, Ph.D. is the Founder and CEO of Giant Oak and Co-Founder and CEO of Consilient. He is the creator of GOST and Dozer.  <a class="read-more-link" href="https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/">Data’s Double Edges: How To Use Machine Learning To Solve The Problem Of Unused Data In Risk Management</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Source &#8211; https://www.forbes.com/</p>



<p>Gary M. Shiffman, Ph.D. is the Founder and CEO of Giant Oak and Co-Founder and CEO of Consilient. He is the creator of GOST and Dozer. </p>



<p>According to my company&#8217;s research, a full 25% of PPP fraud casesbrought by the Department of Justice could have been easily prevented<strong>.</strong> The fraud is so obviously clumsy that it is embarrassing to whomever approved the loans.</p>



<p>Decision-makers consume a lot of data. The world is awash in data, and data is there to be used — or not used — like at no other time. As a result, risk measurement systems today perform far better than the systems of even just three years ago. But what if yesterday&#8217;s performance was poor, in absolute terms? Can improvement over last year justify missing obviously blatant threats to your organization? I want to focus this article on obvious but undiscovered risk and the data not used in analytics.</p>



<p>Artificial Intelligence and Machine Learning (AI/ML) enable&nbsp;<em>qualitative</em>&nbsp;changes to risk management, which deliver large step increases in&nbsp;<em>quantitative&nbsp;</em>performance, leaving a gaping question. If asked, &#8220;How much improvement is enough?,&#8221; then &#8220;any improvement&#8221; might sufficiently answer the question. But &#8220;any&#8221; feels like an inattentive answer. The very existence of data demands decisions most executives have not been trained to make: What data can be excluded from the analysis? And yet these decisions on what data to use and exclude require great care, like receiving a double-edged razor in an unprotected hand.&nbsp;</p>



<p>About a decade ago, when &#8220;big data&#8221; was the buzz, I remember joining industry discussions as executives rushed to formulate initiatives and responses. Leaders would often clench their fists while arguing that there is such a thing as too much data. </p>



<p>The Biden Cybersecurity EO: The Good, The Bad And The Ugly—But Mostly Good</p>



<p>Too much data overwhelms humans, so the reaction of the 2010s made sense at the time. However, data also creates more accurate ML models. Amazon&#8217;s market capitalization in 2011 was $78 billion and grew to an astounding $1.7 trillion by 2021; the growth came from understanding the value of more data, not less. Risk professionals in 2021 similarly understand that happiness with less data can cut a career short.</p>



<p>Machine Learning tools are available, posing a new &#8220;big data&#8221; challenge for the 2020s: missing threats because of data not used. Market leaders have moved from fearing too much data to too little data in analytics.&nbsp;</p>



<p>To limit the use of data in risk discovery leaves threats undiscovered, exposing decision-makers to<em> ex post facto</em> criticism: &#8220;How did you miss that? It was so obvious!&#8221; The data is free and publicly available. Read news reports of PPP fraud cases, for example. People who did not have companies or employees received large amounts in Covid-19 relief dollars. &#8220;How did they miss that?&#8221; you might think. The bank and government screeners used too little data and missed obvious information. They erred in selecting the data not used. </p>



<p>Critics of using more data, even in 2021, rightly complain that added data still creates too many &#8220;false positives,&#8221; especially in unstructured data. Like oiling a blade in a sawmill, data helps for a while but eventually gums up the moving parts. Data has a history of gumming up the risk discovery process.&nbsp;</p>



<p>To prevent these big-data frustrations in the past, data-as-a-service vendors emerged. Firms in these markets use hundreds or thousands of people to filter data, creating highly curated data sets, and they sell this high-cost data at a high price to risk professionals in many industries, financial institutions and law enforcement agencies.&nbsp;&nbsp;</p>



<p>Unfortunately, human-based filtering absolutely separates risk management professionals from massive amounts of valuable data. For example, financial services firms spend $180.9 billion on financial crime compliance worldwide, according to a 2020 LexisNexis study, and yet financial institutions capture less than 1% of the criminal proceeds. Fifty-seven percent of that $180.9 billion is spent on labor. The large effort masks the lack of progress.</p>



<p>To protect oneself from the double-edged sword of data availability in 2021, use more data in risk measurement to decrease the universe of unused data and use AI/ML to decrease the false positives challenges which vex human screeners and investigators. This is the balance to keep in mind: Use more data and reduce errors by replacing manual human curation with machine learning.&nbsp;</p>



<p>AI/ML can solve much of the double-edged nature of data abundance. Technology delivers effectiveness with efficiency. The key is reindexing the publicly available information on the internet, a task too massive for a human but easy enough for well-trained ML models, and then to perform entity resolution (ER) on that massive mess of unstructured data.</p>



<p>In addition, organizational changes can be implemented — for example, routine testing of ML model output with measurements of efficiency and effectiveness, such as precision and recall against a known set of test data. To do this, organizations may want to consider training management to better understand the measurement of ML systems. Including someone fluent in AI/ML performance on your company&#8217;s board also makes sense in today&#8217;s world of important data exclusion decisions.&nbsp;</p>



<p>If this technology exists, why is it not pervasive across every bank in the U.S.? The answer is that it takes time for the widespread adoption of new technology. There is no villain. There is no government branch or bank CEO fighting adamantly against it — in fact, joint regulatory agencies, FinCEN and the Bank Policy Institute are encouraging it. AI/ML, which is already so pervasive in our cell phones and homes, will soon start impacting the risk world, such as AML/CFT and Customer Due Diligence.</p>



<p>Decision-makers consume a lot of data but need the ability to use more. Entity resolution across massive public and unstructured data will soon be a part of every risk management organization. The most successful risk management managers of the 2020s will find innovative ways to utilize more data, protect privacy and improve both effectiveness and efficiency.&nbsp;</p>
<p>The post <a href="https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/">Data’s Double Edges: How To Use Machine Learning To Solve The Problem Of Unused Data In Risk Management</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/datas-double-edges-how-to-use-machine-learning-to-solve-the-problem-of-unused-data-in-risk-management/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Big data: IPK researchers double accuracy in predicting wheat yields</title>
		<link>https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/</link>
					<comments>https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/#respond</comments>
		
		<dc:creator><![CDATA[aiuniverse]]></dc:creator>
		<pubDate>Sat, 12 Jun 2021 05:31:17 +0000</pubDate>
				<category><![CDATA[Big Data]]></category>
		<category><![CDATA[ACCURACY]]></category>
		<category><![CDATA[Big data]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[IPK]]></category>
		<category><![CDATA[predicting]]></category>
		<category><![CDATA[researchers]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=14238</guid>

					<description><![CDATA[<p>Source &#8211; https://www.eurekalert.org/ The enormous potential of Big Data has already been demonstrated in areas such as financial services and telecommunications. An international team of researchers led <a class="read-more-link" href="https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/">Big data: IPK researchers double accuracy in predicting wheat yields</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Source &#8211; https://www.eurekalert.org/</p>



<p>The enormous potential of Big Data has already been demonstrated in areas such as financial services and telecommunications. An international team of researchers led by the IPK Leibniz Institute has now tapped the potential of big data for the first time on a large scale for plant research. To this end, data from three projects were used to increase the predictive accuracy for yield in hybrid varieties of wheat.</p>



<p>&#8220;We were able to draw on the largest dataset published to date, which contains information from almost a decade of wheat research and development,&#8221; says Prof. Dr. Jochen Reif, Head of the Breeding Research Department at IPK. The results, which could herald a new era for plant breeding, have now been published in the magazine&nbsp;<em>Science Advances</em>.</p>



<p>Finally, data on more than 13,000 genotypes tested in 125,000 yield plots were analysed. For comparison: In a breeding programme, plants are tested in 20,000 yield plots every year. &#8220;It was clear to us that we would have to increase the population sizes in order to ultimately develop robust predictive models for yield,&#8221; says Prof. Dr. Jochen Reif, &#8220;so in this case it was really once: &#8216;a lot goes a long way'&#8221;. The effort was worth it, he said. &#8220;We were able to double the predictive accuracy for yield in our study.&#8221;</p>



<p>The research team used data from the two previous projects HYWHEAT (funded by the Federal Ministry of Research and Education) and Zuchtwert (funded by the Federal Ministry of Food and Agriculture) as well as from a programme of the seed producer KWS. Basically, the challenge in such studies is to prepare the information to a uniform quality level and thus enable a common analysis. &#8220;Since we were responsible for the designs of the experiments from the start, we were able to plan them in such a way that a small proportion of the same genotypes were always tested across the projects, thus enabling an integrated analysis in the first place,&#8221; says Prof. Dr. Jochen Reif.</p>



<p>The scientist is firmly convinced that it pays off to use Big Data for plant breeding and research. &#8220;We have ultimately worked on the future of all of us&#8221;, says the IPK scientist. &#8220;We have succeeded in showing the potential of Big Data for breeding yield-stable varieties in times of climate change.&#8221;</p>



<p>According to Prof. Dr. Jochen Reif, the current model study has a significance that goes far beyond one crop type and hopefully heralds a cultural change in breeding. &#8220;We were able to show the great benefits of Big Data for plant breeding. However, the possibilities for this are only possible through a trusting cooperation of all stakeholders to share data and master the challenges of the future together.&#8221;</p>



<p>Ultimately, this is also the entry point for the use of artificial intelligence (AI). &#8220;The successful use of AI also stands and falls in plant breeding and research with curated and comprehensive data. Our current study is an important door opener for this path.&#8221;</p>



<p></p>
<p>The post <a href="https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/">Big data: IPK researchers double accuracy in predicting wheat yields</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/big-data-ipk-researchers-double-accuracy-in-predicting-wheat-yields/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
