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

Резултати

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

Пребарај: #uscourts

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

@ai_and_law · Post #175 · 28.11.2023 г., 08:04

U.S. Appeals Court Proposes Certification for AI Use in Filings Hello dear subscribers! The 5th U.S. Circuit Court of Appeals, based in New Orleans, in a recent notice, proposed a rule requiring lawyers to certify the non-reliance on AI or ensure human review of AI-generated content in court filings. The proposed rule applies to lawyers and litigants, obligating them to confirm, under penalty of sanctions, the accuracy of citations and legal analysis in filings generated by AI tools like OpenAI's ChatGPT. Recognizing the increasing use of AI in legal work, the court is inviting public comments on this rule until January 4, 2024. This move aligns with a broader national discussion on regulating AI's role in courtrooms. This development comes in the wake of some courts in the 5th Circuit's jurisdiction adopting local rules and policies addressing AI use. In June, U.S. District Judge Brantley Starr in Texas became one of the first to mandate lawyers' certification of non-AI use without human verification. #LegalTech#AIinLaw#USCourts#LegalInnovation

AI & Law

@ai_and_law · Post #227 · 29.01.2024 г., 08:04

Two US Appeals Courts Dive into AI Examination Greetings everyone! Two federal appeals courts in the United States are establishing committees dedicated to studying the influence of AI on the legal system. U.S. Circuit Judge Eric Miller is set to lead an AI-focused committee for the 9th U.S. Circuit Court of Appeals, headquartered in San Francisco. As the nation's largest federal appeals court, the 9th Circuit is yet to formulate regulations governing AI use among legal practitioners. Similarly, Chief Judge Michael Chagares of the 3rd U.S. Circuit Court of Appeals, based in Philadelphia, has instituted an AI committee, according to Joel McHugh, the court's deputy circuit executive. The announcement about the 9th Circuit's committee followed the revelation by the law firm Bradley Arant Boult Cummings that A.J. Bahou, a Nashville partner chairing its AI practice, had been appointed to serve on this newly formed panel. Chief U.S. Circuit Judge Mary Murguia is convening the 9th Circuit's committee, aiming to assist the court in assessing appropriate rules and applications of AI technology. "The court is in the process of forming a committee, and we will issue an announcement in due course," stated Miller. While the timing of potential actions by these committees remains unclear, McHugh offered no information on whether rules regulating AI use would be introduced. These decisions to establish AI-focused committees come amid a national exploration by judges on how to cope with the rapid ascent of generative AI programs, such as OpenAI's ChatGPT, and how to regulate their use within legal proceedings. Chief U.S. Supreme Court Justice John Roberts, in his annual report on December 31, emphasized the potential benefits of AI while urging caution and humility in its application. He pointed out incidents of AI "hallucination," where lawyers using AI programs submitted briefs with citations to non-existent cases. #AIinLaw#LegalTechnology#USCourts#ArtificialIntelligence