Moved to skeeto/scratch/aidrivers
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
WITH | |
RECURSIVE fib(n, a, b) AS | |
( | |
SELECT 1, 1, 0 | |
UNION ALL | |
SELECT n + 1, a + b, a | |
FROM fib | |
WHERE n < 10 | |
) | |
SELECT a |
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
from sklearn.feature_extraction.text import TfidfVectorizer | |
from sklearn.metrics.pairwise import linear_kernel | |
from nltk import word_tokenize | |
from nltk.stem import WordNetLemmatizer | |
import nltk | |
from nltk.corpus import stopwords | |
# Download stopwords list | |
nltk.download('punkt') | |
stop_words = set(stopwords.words('english')) |
⚠️ ⚠️ This Gist Has Been Moved to This Repo ⚠️ ⚠️
New results will be saved in https://github.com/achow101/coin-selection-simulation
Performed in 2022:
Method | Current Balance | Mean #UTXO | Current #UTXO | #Deposits | #Inputs Spent | #Withdraws | #Uneconomical outputs spent | #Change Created | #Changeless | Min Change Value | Max Change Value | Mean Change Value | Std. Dev. of Change Value | Total Fees | Mean Fees per Withdraw | Cost to Empty | Total Cost | Min Input Size | Max Input Size | Mean Input Size | Std. Dev. of Input Size | BnB Usage | SRD Usage | Knapsack Usage | #BnB no change | #SRD no change | #Knapsack no change |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Master (7d1cef26) | 16.55857290 | 128.469688101 | 58 | 4065 | 11182 | 7893 | 2 | 7175 | 718 | 0.00002240 | 274.32706193 | 17.5661542098 | 47.1756762651 | 0.44316889 | 0.0000561470784239 | -0.0000394400000 | 0.443129450000 | 1 | 102 | 1.41669834030 | 2.50732528322 | 716 | 1936 | 5241 | 716 | 0 | 2 |
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
// Band combinations | |
var natural = ['B4', 'B3', 'B2']; | |
var swir = ['B6', 'B5', 'B3']; | |
var urban = ['B7', 'B6', 'B4']; | |
var veg = ['B5', 'B4', 'B3']; | |
// Get a Landsat scene | |
var scene = ee.Image('LANDSAT/LC8_L1T_TOA/LC80450332015263LGN00'); | |
// Convert the RGB bands to the HSV |