Phranakorn Rajabhat University Library

Constitutional challenges in the algorithmic society / [electronic resource]

Constitutional challenges in the algorithmic society / [electronic resource] edited by Hans Wolfgang Micklitz ... [et al.] - Cambridge, United Kingdom : Cambridge University Press, 2021 - online resource

Oreste Pollicino and Giovanni De Gregorio, Constitutional law in the algorithmic society -- Andrea Simoncini and Erik Longo, Fundamental rights and the rule of law in the algorithmic society by law? -- Celine Castest-Renard, Human rights and algorithmic impact assessment for predictive policing -- Francesca Galli, Law enforcement and data-driven predictions at the national and EU level : a challenge to the presumption of innocence and reasonable suspicion? -- Amnon Reichman and Giovanni Sartor, Algorithms and regulation -- Angela Daly, Thilo Hagendorff, Li Hui, Monique Mann, Vidushi Marda, Ben Wagner, Wayne Wei Wang, Artificial Intelligence, governance and ethics : global perspectives -- Pieter Vancleynenbreugel, EU by-design regulation in the algorithmic society : promising way forward or constitutional nightmare in-the-making? -- Henrik Palmer Olsen, Jacob Livingston Slosser and Thomas Troels Hildebrandt, What's in the box? The legal requirement of explainability in computationally, eided decision-making in public ddministration -- Yaiza Cabedo, The international regulatory race for protecting investors from crypto-finance risks -- Hans W. Micklitz and Anne Aurelie Villanueva, Responsibilities of companies in the algorithmic society -- Serge Gijrath, Consumer law as a tool to regulate adverse consequences of AI output -- Federica Casarosa, When the algorithm is not fully reliable : the collaboration between technology and humans in the fight against hate speech -- Pietro Sirena and Francesco Paolo Patti, Smart contracts and automation of private relationships.

9781108914857


CONSTITUTIONAL LAW--DECISION MAKING
ARTIFICIAL INTELLIGENCE--LAW AND LEGISLATION
LEGISLATION
JUDICIAL PROCESS
ALGORITHMS --SOCIAL ASPECTS

K 3165 / C66 2021

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });