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

TGINSIGHT SIMILAR POSTS

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

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

Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic

Hashtags

Резултати

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

Пребарај: #legaltechnology

当前筛选 #legaltechnology清除筛选
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