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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #401 · 15 дек.

Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач. Она работает в нескольких режимах. 1. Самый простой - ждем завершения всех задач async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(10)] done, pending = await asyncio.wait( tasks, return_when=asyncio.ALL_COMPLETED ) for task in done: try: print(task.result()) except Exception as e: print(e) Очень похоже на gather, но работает не так. ▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done ▫️не гарантирует порядок результатов так как оба объекта это set ▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат. 2. Ждем завершения первой задачи, даже если там ошибка. async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(3)] done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_COMPLETED ) # в done может быть несколько задач! for task in done: try: print(task.result()) except Exception as e: print(f"Fail: {e}") # Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать for task in pending: task.cancel() В сете done будут таски которые успели завершится, причем как успешно так и нет. 3. До первой ошибки. Тоже самое, но с аргументом FIRST_EXCEPTION done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_EXCEPTION ) Функция завершается как только первая задача упадет с ошибкой. Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные. ↗️ Полный листинг примеров здесь #async

Hashtags

Резултати

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

Пребарај: #streamingfraud

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

@ai_and_law · Post #394 · 11.09.2024 г., 07:04

Criminal Indictment Exposes $10 Million AI Music Streaming Fraud In a groundbreaking case, a North Carolina musician, Michael Smith, has been indicted for orchestrating a massive streaming fraud scheme that allegedly exploited AI-generated tracks to rake in over $10 million in royalties. This marks the first criminal case involving artificially inflated music streaming, highlighting the emerging risks as AI tools become more embedded in the music industry. Smith is accused of partnering with an AI music company to create a vast library of tracks, which he then fraudulently boosted using a network of bot accounts across major platforms like Spotify, Apple Music, and YouTube Music. The complex scheme, which began in 2017 and continued through 2024, involved deceiving distributors, financial institutions, and even the Mechanical Licensing Collective (MLC), which eventually caught on and halted royalty payments. This case underscores the growing challenge of maintaining integrity in the digital music ecosystem as AI continues to evolve. As the DOJ takes action, the music industry must ramp up efforts to detect and prevent such fraudulent activities to protect legitimate creators and maintain trust in digital platforms. #AI#MusicIndustry#StreamingFraud#DigitalLaw#Copyright