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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #205 · 22 јан.

Как работает функция reload()? Эта функция нужна для того, чтобы перезагрузить изменившийся код из py-файла без рестарта интерпретатора. Дело в том, что любой импортированный модуль при повторном импорте не будет перечитывать файл. Функция импорта вернёт уже загруженный в память объект модуля. Чтобы обновить код, нужно либо перезапустить всю программу, либо использовать функцию reload() from importlib import reload reload(my_module) 🔸 Функция reload() принимает в качестве аргумента только объект модуля или пакета. Она не может перезагрузить класс или функцию. Только весь файл целиком! 🔸 Перезагрузка пакета перезагрузит только его файл __init__.py, если он есть. Но не вложенные модули. 🔸Она не может перезагрузить ранее не импортированный модуль. 🔸При вызове функция reload() перечитывает и перекомпилирует код в файле, создавая новые объекты. После создания новых объектов перезаписывается ранее созданный неймспейс этого модуля. Это значит, что если где-то этот модуль импортирован через import и обращение к атрибутам происходит через неймспейс (имя) модуля, то такие атрибуты обновятся. Если какие-либо объекты из этого модуля импортированы через from то они будут ссылаться на старые объекты. Напишем простой модуль # mymodule.py x = 1 Теперь импортируем модуль и отдельно переменную х из модуля >>> import mymodule >>> from mymodule import x >>> print(mymodule.x) 1 >>> print(x) 1 Не перезапуская интерпретатор вносим изменения в модуль # mymodule.py x = 2 Делаем перезагрузку модуля и проверяем х ещё раз >>> reload(mymodule) >>> print(mymodule.x) 2 >>> print(x) 1 То же самое будет если присвоить любой объект переменной (даже словарь или список) Повторный импорт обновляет значение >>> from mymodule import x >>> print(x) 2 🔸Созданные инстансы классов не обновятся после перезагрузки модуля. Их придётся пересоздать. #tricks#basic

Резултати

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

Пребарај: #aiandsociety

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

@ai_and_law · Post #84 · 15.08.2023 г., 07:04

House of Lords Deliberates Advanced AI: UK's Ongoing AI Debate Hello, everyone! The UK House of Lords recently engaged in a discussion about advanced AI's ongoing development, addressing potential risks and regulatory strategies. The debate focused on whether the government's March White Paper on AI regulation is still relevant or if new legislation is necessary due to recent developments. The House of Lords' discussion underscores the complexities of overseeing rapidly evolving AI technologies, showcasing the government's dedication to fostering AI innovation while prioritizing public safety and responsible development. #AIRegulation#AIandLaw#AIandSociety

AI & Law

@ai_and_law · Post #438 · 08.11.2024 г., 08:04

Navigating AI Governance in a New Era: Key Insights from the World Economic Forum The World Economic Forum’s report, "Governance in the Age of Generative AI," emphasizes that effective governance of generative AI requires timely and strategic assessments of regulatory frameworks, industry responsibilities, and human rights considerations. To harness AI responsibly, policymakers need to evaluate whether existing laws and regulations meet the distinct risks posed by generative AI. This includes ensuring that protections are in place for vulnerable groups and aligning with international human rights standards. The report also stresses the importance of balancing regulatory caution with the need for innovation. Governments are encouraged to adopt risk-based, agile governance that leverages tech-like dynamism but avoids compromising oversight or human rights. Ultimately, the goal is to foster an AI landscape that supports both public interest and economic innovation through robust risk management, clarified policies, and sustained industry alignment with societal values. #AIGovernance#WEFReport#ResponsibleAI#AIandSociety

AI & Law

@ai_and_law · Post #206 · 04.01.2024 г., 08:04

AI Image-Generators Trained on Explicit Photos of Children Hello everyone! A startling revelation demands immediate attention: popular AI image-generators harbor a concerning flaw, with thousands of explicit images of child abuse embedded in their foundations. This revelation comes from a recent report by the Stanford Internet Observatory, urging swift action to address this deeply troubling aspect of the technology. Hidden within the colossal AI database LAION, a fundamental resource for training leading AI image-making models, are over 3,200 images of suspected child sexual abuse. The watchdog group, in collaboration with anti-abuse charities, brought this disturbing fact to light, emphasizing the urgency for companies to rectify this issue. The material influences AI tools to generate harmful outputs, potentially perpetuating the exploitation of real victims. In response to the report, LAION, an acronym for the Large-scale Artificial Intelligence Open Network, has promptly taken down its datasets, emphasizing a zero-tolerance policy for illegal content. However, this incident underscores broader challenges in the rush to make AI tools accessible, raising questions about the responsibility of developers and platforms in ensuring the ethical use of such technology. The Stanford report calls for decisive measures, including the deletion of training sets derived from LAION and making certain AI models, particularly an older version of Stable Diffusion, less accessible. The report also emphasizes the need for comprehensive filters and collaboration with child safety experts in developing AI datasets. #AILaw#AIethics#AIGeneration#StanfordReport#AIandSociety