Skip to content

Instantly share code, notes, and snippets.

View Timopheym's full-sized avatar
🎯
Focusing

Timophey Molchanov Timopheym

🎯
Focusing
View GitHub Profile
@Timopheym
Timopheym / reading.md
Created May 7, 2021 18:29 — forked from bashkirtsevich/reading.md
Машинное обучение

Для тех, кто хочет на русском языке почитать:

  1. Петер Флах Машинное обучение источник, Оглавление и отрывки из глав

  2. Джеймс Г., Уиттон Д., Хасти Т., Тибширани Р. Введение в статистическое обучение с примерами на языке R источник, Оглавление и отрывки из глав

  3. Себастьян Рашка Python и машинное обучение источник

  4. Хенрик Бринк, Джозеф Ричардс Машинное обучение источник

using System;
using System.Security.Cryptography.X509Certificates;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Drive.v3;
using Google.Apis.Drive.v3.Data;
using Google.Apis.Services;
namespace Google.Apis.Samples.PlusServiceAccount
{
{
"userId": 930203,
"displayName": "Abdullah Karimi",
"country": "United States",
"region": "District of Columbia",
"city": "Washington",
"gitHubUserName": "karimiabdullah",
"twitterUserName": "abdullah_karimi",
"linkedInUrl": "https://www.linkedin.com/in/abdullah-karimi-5b0b3b26",
"websiteUrl": null,
@Timopheym
Timopheym / conventer.py
Last active November 9, 2017 00:25
kaggle2fastai dataset conventer
import pandas as pd
import os
from shutil import copyfile,move
labels = pd.read_csv('data/dogbreed/labels.csv')
classes = list(labels['breed'].unique())
source_path = 'data/dogbreed/old_train/'
path = 'data/dogbreed/train/'
valid_path = 'data/dogbreed/valid/'
from sklearn.cross_validation import StratifiedShuffleSplit
from sklearn.decomposition import PCA
from pandas import read_csv, DataFrame
import find_mxnet
import mxnet as mx
import argparse
import os, sys
import train_model_poc
antares-presentation.pptx 1drv.ms
Первый слайд
В первую очередь я бы хотел рассказать о людях с которыми мы делаем наш ЦМИТ. (Следующий слайд)
Слайд КОМАНДА (1.5 минут) 1.5
Наша Команда состоит по большей части из инженеров и программистов которые увлечены собственными разработками.
В какой-то момент мы поняли, что хотим делиться своим опытом со школьниками и студентам.
Кирилл занимается курированием технических проектов в фонде Соединение и разработкой обучающих программ в рамках проекта “Лифт в будущее”.
У Егора большой опыт программирования как в России так и за рубежом, в нашей компании он занимается разработкой Веб-сайта, и будет читать курс веб-разработки.
<div class="actions fl_r">
<a href="write1778303" onclick="return showWriteMessageBox(event, 1778303)" class="friends_act">Send a message</a>
<a href="/friends?id=1778303" class="friends_act">Browse friends</a>
<a onclick="return Friends.deleteFriend(event, 1778303, this)" class="friends_act">Remove from friends </a>
<a class="lists_select frinds_act" onclick="return Friends.ddShow(1778303, this, event)">Edit friend lists</a>
</div>
@Timopheym
Timopheym / sync_pins.js
Last active September 9, 2023 17:09
Small script to download your pinterest boards to your machine. Limit 50 pins per board... but you can download all pins from board using instruction inside ;)
var request = require("request");
var fs = require("fs");
var api_root = 'http://widgets.pinterest.com/v3/pidgets/boards/';
var sync_dir = './images', image_url, image_path, current_user_boards, current_user_name, board_dir;
var users = {
timopheym : [
'skatches',
'home',
/* spec: webgl */
//CBS
//Parallax scrolling fractal galaxy.
//Inspired by JoshP's Simplicity shader: https://www.shadertoy.com/view/lslGWr
// http://www.fractalforums.com/new-theories-and-research/very-simple-formula-for-fractal-patterns/
precision mediump float;
uniform float time;
uniform vec2 resolution;
uniform sampler2D tex[32];
## English language utilities for text processing
## Check whether the apostrophe placement follows English rules
sub allow_word ($)
{
my $word = shift;
return ($word =~ /^[A-Z][A-Z\'-]+$/) && (index($word,"'") < 0 || allow_apostrophe($word));