Skip to content

Instantly share code, notes, and snippets.

View xahiru's full-sized avatar

Ahmed Zahir xahiru

  • Balloonshare
  • Maldives
View GitHub Profile
@xahiru
xahiru / docker-compose.yaml
Created January 27, 2022 02:21 — forked from alinetskyi/docker-compose.yaml
Ethereum node deployment file
version: '3.6'
services:
geth:
image: ethereum/client-go:stable
restart: always
command: |
--rpc
--rpcaddr=0.0.0.0
--rpcport=8545
@xahiru
xahiru / letor_metrics.py
Created December 19, 2020 07:03 — forked from mblondel/letor_metrics.py
Learning to rank metrics.
# (C) Mathieu Blondel, November 2013
# License: BSD 3 clause
import numpy as np
def ranking_precision_score(y_true, y_score, k=10):
"""Precision at rank k
Parameters