- Papers with code - Мекка в области ML на проекте собираются все достижения в области машинного обучения, ранжируются по качеству, категоризируются по темам.
- ML-news - новостные подкасты от очень крутого спеца, Яник собирает все самые горячие события в области ML. Помимо этого подробно разбирает популярные статьи и модели.
- huggingface - Крупный агрегатор популярных моделей
- neurohive - Хороший русскоязычный ресурс по ML
- towards data science - ML ветка medium с большим числом популярных статей.
- Two minutes paper - видео блог на котором регулярно публикуются обзоры различных SOTA решений, новых технологий визуализации.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# #define PI 3.14159265358979323846 | |
# static const char* basis[] = { "1","e0","e1","e2","e01","e20","e12","e012" }; | |
from std/math import sqrt | |
type | |
PGA2D* = array[8, float64] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" | |
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" | |
crossorigin=""/> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" | |
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" | |
crossorigin=""></script> | |
<div id="mapid"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ss = SpreadsheetApp.getActiveSheet(); | |
let start_row = 22; | |
let forecast_base = 14; // Сколько последних дней использывать для интерполяции | |
let forecast_rows = 14; // На сколько дней вперед делать прогноз | |
function updateStat() { | |
let res = UrlFetchApp.fetch("https://yastat.net/s3/milab/2020/covid19-stat/data/default_data.json?v=1604146089914", { | |
"headers": { | |
"accept": "*/*", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> python test.py --name=pose_fashion_checkpoints --model=pose --attn_layer=2,3 --kernel_size=2=5,3=3 --gpu_id=0 --dataset_mode=fashion --dataroot=./dataset/fashion --results_dir=./eval_results/fashion | |
--------------Options-------------- | |
angle: False | |
attn_layer: [2, 3] | |
batchSize: 1 | |
checkpoints_dir: ./result | |
continue_train: False | |
dataroot: ./dataset/fashion | |
dataset_mode: fashion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
find -iname "*.jpg" -print0 | xargs -P 10 -0 jpeginfo -c | grep -e WARNING -e ERROR | cut -d ' ' -f 1 | xargs rm |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch_files=*.c | |
while inotifywait -e close_write $watch_files | |
do | |
# build commands | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Github font | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://*.github.com/* | |
// @grant none | |
// ==/UserScript== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder