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

TGINSIGHT SIMILAR POSTS

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

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

Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках. Выглядело это примерно так: from fastapi.concurrency import run_in_threadpool async def execute(data: DataRequest) -> DataResponse: try: result = await run_in_threadpool(sync_function, data) return DataResponse(data=result) except Exception as e: return DataResponse( error=str(e), success=False, ) В общем работает нормально. Для всех вызовов под капотом используется общий тредпул, всё работает предсказуемо. Но потребовалось изменить количество запускаемых в пуле потоков (по умолчанию создается 40 воркеров). Так как дело происходит с FastAPI, делается это через lifespan используя настройки anyio: import anyio @asynccontextmanager async def lifespan(app: FastAPI): limiter = anyio.to_thread.current_default_thread_limiter() limiter.total_tokens = 100 yield # если вдруг нужно вернуть обратно limiter.total_tokens = 40 Зачем менять количество воркеров? - уменьшить, если оперативки мало (один тред занимает ~8мб) - увеличить чтобы выдержать нагрузку Если есть предложения получше при тех же вводных - предлагайте😉 #async

Hashtags

Резултати

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

Пребарај: #copyrightdata

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

@ai_and_law · Post #202 · 28.12.2023 г., 08:04

USA: New Bill Proposes Transparency Rules for AI Training Data Hello everybody! In US a new AI Foundation Model Transparency Act have been introduced. The aim is to ensure transparency in the usage of copyrighted data in training AI models. Companies developing foundation models must reveal the sources of their training data. This move is geared towards informing copyright holders if their data has been utilized. The bill tasks the Federal Trade Commission (FTC) to collaborate with the National Institute of Standards and Technology (NIST) in establishing rules for reporting training data transparency. Companies must disclose the origin of training data, how it's retained during inference, model limitations or risks, alignment with NIST’s AI Risk Management Framework, and adherence to federal standards. AI developers are required to report efforts to "red team" the model, especially in areas like medical queries, cybersecurity, elections, and services impacting vulnerable populations. This bill complements the Biden administration’s AI executive order, reinforcing the push for standardized reporting in AI models. The bill is yet to go through committee discussions, and its fate before the election campaign season remains uncertain. #AIlaw#CopyrightData#Legislation#TechNews#AIRegulation