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 слични објави

Пребарај: #transparencyinjustice

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

@ai_and_law · Post #63 · 21.07.2023 г., 07:04

Canadian Courts Embrace Transparency: AI Usage in Court Documents to be Disclosed Hello everyone! Interesting news from Manitoba's legal scene. Chief Justice Glenn Joyal has introduced a practice direction requiring attorneys to disclose their use of artificial intelligence when preparing court documents in the Court of King's Bench. This decision comes in the wake of a recent AI-generated fake case law mishap in the U.S., prompting the need for transparency around AI's role in legal proceedings. While the practice direction acknowledges the potential future use of AI in court submissions, it also highlights concerns about the reliability and accuracy of information generated by AI systems. The move is seen as a proactive step to ensure that the legal community remains informed about the evolving role of AI in the courtroom. Experts note that the increasing use of AI in the legal profession may raise ethical dilemmas and challenges about the trustworthiness of AI-generated court documents. However, many also see AI as a valuable tool to assist lawyers in managing their workload and enhancing access to justice. By mandating AI disclosure, Manitoba's legal system is setting an example of responsible AI adoption and ensuring that AI's potential benefits are harnessed while maintaining the integrity and reliability of legal proceedings. #AIinLaw#LegalTech#TransparencyInJustice#FutureOfLaw