TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #61 · 2 апр.

Ранее я уже упоминал о другой фишке из ˍˍfutureˍˍ , это оператор деления. from __future__ import division Суть проста. Раньше сложность типа данных результата поределялась типом самого сложного операнда. Например: int/int => int int/float => float В первом случае оба операнда int, значит и результат будет int. Во втором float более сложный тип, поэтому результат будет float. Если нам требуется получить дробное значение при делении двух int то приходилось форсированно один из операндов конверировать в float. 12/float(5) => float Но с новой "философией" это не требуется. В Python3 "floor division" заменили на "true division" а старый способ теперь работает через оператор "//". >>> 3/2 1.5 >>> 3//2 1 То есть теперь деление int на int даёт float если результат не целое число. В классах теперь доступны методы __floordiv__() и __truediv__() для определения поведения с этими операторами. Данный переход описан в PEP238. #pep#2to3#basic

Резултати

Пронајдени 2 слични објави

Пребарај: #aioffice

当前筛选 #aioffice清除筛选
AI & Law

@ai_and_law · Post #360 · 25.07.2024 г., 07:04

Unveiling the AI Office's Extensive Responsibilities Under the AI Act Kai Zenner, Head of Office and Digital Policy Adviser for MEP Axel Voss in the European Parliament, recently published a blog post detailing the 130 responsibilities assigned to the AI Office under the AI Act. These responsibilities are categorized into four main areas: establishing an AI governance system, developing secondary legislation, EU-level enforcement activities, and conducting ex-post evaluations of the law. The governance system includes 39 tasks to be executed between 21 February 2024 and 2 August 2026. Another 39 tasks involve creating secondary legislation, such as Delegated Acts, Implementing Acts, guidelines, templates, Codes of Practice, Codes of Conduct, and a standardisation request. These tasks have varying deadlines, some fixed and others at the Commission's discretion. Additionally, there are 34 categories of EU-level enforcement activities, beginning on 2 February 2025, and 18 tasks for ex-post evaluation to be carried out between 2025 and 2031. #AI#AIOffice#AIAct

AI & Law

@ai_and_law · Post #140 · 17.10.2023 г., 07:04

Experts Examine AI Office's Key Role in EU Regulation Hello, dear subscribers! Hadrien Pouget, Associate Fellow at the Carnegie Endowment for International Peace, and Johann Laux, British Academy Postdoctoral Fellow at the University of Oxford, have written an insightful article highlighting the pivotal role of the AI Office within the EU's regulatory framework, especially in the context of implementing the AI Act. The authors propose a three-fold strategy for the AI Office: 1️⃣ Developing Harmonized Standards: They recommend that the AI Office actively contributes to enhancing the specificity of AI regulations over time. This involves aiding in the determination of normative decisions for consideration and offering insights when normative judgments need to be made. 2️⃣ Amending the AI Act: The AI Office should monitor and navigate the intricate interplay between the AI Act and other laws. Moreover, it should maintain independence while providing recommendations for delegated acts and amendments. 3️⃣ Handling Legal Matters: In court proceedings, the AI Office plays a vital role in identifying gaps in the protection of fundamental rights. It offers insights into distinguishing predictable harms from unpredictable ones by meticulously examining technological evidence. The AI Office is envisioned as a central agency instrumental in ensuring the ethical and effective implementation of AI regulations. #AIRegulation#AIStandards#AIAct#EURegulation#AIOffice#FundamentalRights