#List of countries / Список стран
ISO 3166-1
En list forked from https://gist.github.com/396531
#!/bin/bash | |
# | |
# git pre-commit hook that runs a clang-format stylecheck. | |
# | |
# This file is part of a set of unofficial pre-commit hooks available | |
# at github. | |
# Link: https://github.com/githubbrowser/Pre-commit-hooks | |
# Contact: David Martin, [email protected] | |
# | |
# Modifications for clang-format by [email protected] |
// Coliru - http://coliru.stacked-crooked.com/a/655f184e31f1e779 | |
#include <iostream> | |
using std::size_t; | |
using std::string; | |
using std::ostream; | |
using std::cout; | |
using std::endl; | |
using std::boolalpha; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Retry with Backoff</title> | |
</head> | |
<body> | |
<pre id="result"></pre> | |
</body> | |
</html> |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# This is how I used it: | |
# $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history | |
import sys | |
import time |
import java.io.BufferedReader; | |
import java.io.BufferedWriter; | |
import java.io.IOException; | |
import java.lang.StringBuilder; | |
import java.nio.file.attribute.BasicFileAttributes; | |
import java.nio.file.Files; | |
import java.nio.file.FileSystems; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; |
# Docker | |
FROM ubuntu:xenial | |
# Install developer tools | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get -y update && apt-get -y install \ | |
build-essential \ | |
g++-arm-linux-gnueabihf \ | |
git \ | |
openjdk-8-jdk \ |
#!/bin/bash | |
# ============================================================= | |
# UPDATE SOURCE | |
# ============================================================= | |
# git clone https://github.com/tensorflow/tensorflow | |
# git checkout -- . | |
# git pull origin master | |
# TF_BRANCH=r1.8 | |
TF_ROOT=/home/tensorflow |
From b5a99e2174f115f87c0cb3de9d2a2479a0193db2 Mon Sep 17 00:00:00 2001 | |
From: Koan-Sin Tan <[email protected]> | |
Date: Sun, 18 Nov 2018 13:11:38 +0800 | |
Subject: [PATCH 1/3] add cmdline option to allow running fp32 models with fp16 | |
Add an option for TFLite benchmark_model to allow running fp32 | |
models with fp16. Useful when testing NNPAI accelerators with | |
fp16. | |
--- | |
.../lite/tools/benchmark/benchmark_tflite_model.cc | 9 ++++++++- |
#List of countries / Список стран
ISO 3166-1
En list forked from https://gist.github.com/396531
# Author: Randal S. Olson (randalolson.com / @randal_olson) | |
# Uses Tableau's Tableau10 color scheme | |
# | |
# In Notebook, use it as follows: | |
# plt.style.use('https://gist.githubusercontent.com/muendelezaji/75fe7ca33ac3b47730ba85378459a206/raw/1b807615235ff6f4c919b5b70b01a609619e1e9c/tableau10.mplstyle') | |
figure.figsize: 12, 7 | |
figure.edgecolor: white | |
figure.facecolor: white |