Skip to content

Instantly share code, notes, and snippets.

View theotheo's full-sized avatar
🌴
On vacation

theotheo

🌴
On vacation
View GitHub Profile
@theotheo
theotheo / selenium_postnauka.py
Created November 14, 2020 13:27
Грязный скрипт для скрепинга теста Постнауки про социологов https://postnauka.ru/tests/155870
# %%
import time
import json
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
@theotheo
theotheo / app.gs
Created December 25, 2019 15:53
list all files google drive folder
// Based on https://stackoverflow.com/a/36277049/1248256
// TODO: Set folder ID
var folderId = '';
// Main function 1: List all folders, & write into the current sheet.
function listFolers(){
getFolderTree(folderId, false);
};
@theotheo
theotheo / doc.md
Last active October 13, 2019 04:53
ссылки python
@theotheo
theotheo / list.md
Last active October 12, 2019 06:42
python books and courses

начальный

2017, Ричардсон Крейг, Программируем с Minecraft. Создай свой мир с помощью Python

Майнкрафт!

2019, Лутц Марк, Изучаем Python. Том 1

Большая подробная книга

курс на Степике "Программирование на Python" https://stepik.org/course/67/promo

Начальный курс

@theotheo
theotheo / .adoc
Created July 31, 2019 10:59
пример asciidoctor-reveal.js слайдов

Введение

Слова введения

нотсы для спикера

Цитата

from dostoevsky.tokenization import UDBaselineTokenizer
from dostoevsky.word_vectors import SocialNetworkWordVectores
from dostoevsky.models import SocialNetworkModel
tokenizer = UDBaselineTokenizer()
tokens = tokenizer.split('всё очень плохо') # [('всё', 'ADJ'), ('очень', 'ADV'), ('плохо', 'ADV')]
word_vectors_container = SocialNetworkWordVectores()
vectors = word_vectors_container.get_word_vectors(tokens)
@theotheo
theotheo / Extract_from_Blum.ipynb
Last active April 7, 2019 03:54
Quick and dirty extract lists from Blum book
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@theotheo
theotheo / rounding.ipynb
Created March 29, 2019 14:54
Разные округления. Подробности: https://en.wikipedia.org/wiki/Rounding
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

определения

биологический нейрон

математический нейрон

веса (weights), смещение (bias), функции активации

моделирование нейроном математических операций

нейронная сеть

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.