TGTGInsightаналитика telegramLIVE / telegram public index
← [404] — программирование

TGINSIGHT SIMILAR POSTS

Найти похожее

Источник @procode404 · Post #3559 · 5 мая

​​⌨️ИИ и Python: изучаем нейросети на реальных задачах Видео по нейросетям делятся на два типа: нудная теория и непонятная практика. Но этот плейлист — исключение, так как там дается и теоретический минимум, и сразу практика на реальных задачах. 1. Нейронные сети: краткая история триумфа [11:05] 2. Структура и принцип работы полносвязных нейронных сетей [14:28] 3. Персептрон – возможности классификации образов, задача XOR [19:45] 4. Back propagation – алгоритм обучения по методу обратного распространения [14:55] 5. Ускорение обучения, начальные веса, стандартизация, подготовка выборки [13:27] 6. Переобучение – что это и как этого избежать, критерии останова обучения [8:52] Перейти к плейлисту #python#нейросети

Результаты

Найдено 2 похожих постов

Поиск: #interpreter

当前筛选 #interpreter清除筛选
djangoproject

@djangoproject · Post #156 · 06.09.2016, 01:43

https://wiki.python.org/moin/GlobalInterpreterLock In #CPython, the #global#interpreter lock, or #GIL, is a mutex that prevents multiple native #threads from executing Python bytecodes at once. This lock is necessary mainly because CPython's memory management is not thread-safe. (However, since the GIL exists, other features have grown to depend on the guarantees that it enforces.)

djangoproject

@djangoproject · Post #159 · 12.09.2016, 17:37

https://docs.python.org/3/library/atexit.html The #atexit module defines #functions to #register and #unregister cleanup functions. Functions thus registered are automatically executed upon normal interpreter termination. atexit runs these functions in the reverse order in which they were registered; if you register A, B, and C, at #interpreter#termination time they will be run in the order C, B, A.