All Projects → JackStat → ModelMetrics

JackStat / ModelMetrics

Licence: other
Rapid Calculation of Model Metrics

Programming Languages

r
7636 projects
C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to ModelMetrics

gin-metrics
gin-gonic/gin metrics for prometheus.
Stars: ✭ 87 (+200%)
Mutual labels:  metrics
octane-exporter
Export Laravel Octane metrics using this Prometheus exporter.
Stars: ✭ 14 (-51.72%)
Mutual labels:  metrics
splunk-otel-java
Splunk Distribution of OpenTelemetry Java
Stars: ✭ 39 (+34.48%)
Mutual labels:  metrics
fluentd-elastic-kibana
Working inital configuration for fluentd elastic and kibana
Stars: ✭ 40 (+37.93%)
Mutual labels:  metrics
github exporter
Prometheus exporter for GitHub
Stars: ✭ 21 (-27.59%)
Mutual labels:  metrics
javametrics
Application Metrics for Java™ instruments the Java runtime for performance monitoring, providing the monitoring data visually with its built in dashboard
Stars: ✭ 19 (-34.48%)
Mutual labels:  metrics
icingaweb2-module-pnp
Integrate PNP graphs into Icinga Web 2
Stars: ✭ 32 (+10.34%)
Mutual labels:  metrics
webperf-dashboard
Web Performance Dashboard forked from https://github.com/boyney123/garie
Stars: ✭ 51 (+75.86%)
Mutual labels:  metrics
gateway
A proxy to buffer and forward metrics, events, and traces.
Stars: ✭ 94 (+224.14%)
Mutual labels:  metrics
freshli-lib
A tool for collecting historical metrics about a project's dependencies
Stars: ✭ 12 (-58.62%)
Mutual labels:  metrics
StatsN
A modern c# statsd client for .net core and .net 4.0+
Stars: ✭ 19 (-34.48%)
Mutual labels:  metrics
signalfx-java
Java client libraries for SignalFx
Stars: ✭ 33 (+13.79%)
Mutual labels:  metrics
netdata-java-orchestrator
Netdata Java Plugin Daemon
Stars: ✭ 27 (-6.9%)
Mutual labels:  metrics
torch-metrics
Metrics for model evaluation in pytorch
Stars: ✭ 99 (+241.38%)
Mutual labels:  metrics
visdom-docker
Visdom Docker
Stars: ✭ 12 (-58.62%)
Mutual labels:  metrics
prometheus-httpd
Expose Prometheus metrics using inets httpd.
Stars: ✭ 21 (-27.59%)
Mutual labels:  metrics
cimetrics
Track your metrics in GitHub PR to avoid unwanted regressions
Stars: ✭ 13 (-55.17%)
Mutual labels:  metrics
sensu-plugins-memory-checks
This plugin provides native memory instrumentation for monitoring and metrics collection, including: memory usage via `free` and `vmstat`, including metrics. Note that this plugin may have cross-platform issues.
Stars: ✭ 15 (-48.28%)
Mutual labels:  metrics
java-metrics
No description or website provided.
Stars: ✭ 31 (+6.9%)
Mutual labels:  metrics
sensu-plugins-aws
This plugin provides native AWS instrumentation for monitoring and metrics collection, including: health and metrics for various AWS services, such as EC2, RDS, ELB, and more, as well as handlers for EC2, SES, and SNS.
Stars: ✭ 79 (+172.41%)
Mutual labels:  metrics

ModelMetrics: Rapid Calculation of Model Metrics

Build Status Build status Coverage Status Downloads

Tyler Hunt [email protected]

Introduction

ModelMetrics is a much faster and reliable package for evaluating models. ModelMetrics is written in using Rcpp making it faster than the other packages used for model metrics.

Installation

You can install this package from CRAN:

install.packages("ModelMetrics")

Or you can install the development version from Github with devtools:

devtools::install_github("JackStat/ModelMetrics")

Benchmark and comparison

N = 100000
Actual = as.numeric(runif(N) > .5)
Predicted = as.numeric(runif(N))

actual = Actual
predicted = Predicted

s1 <- system.time(a1 <- ModelMetrics::auc(Actual, Predicted))
s2 <- system.time(a2 <- Metrics::auc(Actual, Predicted))
# Warning message:
# In n_pos * n_neg : NAs produced by integer overflow
s3 <- system.time(a3 <- pROC::auc(Actual, Predicted))
s4 <- system.time(a4 <- MLmetrics::AUC(Predicted, Actual))
# Warning message:
# In n_pos * n_neg : NAs produced by integer overflow
s5 <- system.time({pp <- ROCR::prediction(Predicted, Actual); a5 <- ROCR::performance(pp, 'auc')})


data.frame(
  package = c("ModelMetrics", "pROC", "ROCR")
  ,Time = c(s1[[3]],s3[[3]],s5[[3]])
)

# MLmetrics and Metrics could not calculate so they are dropped from time comparison
#        package   Time
# 1 ModelMetrics  0.030
# 2         pROC 50.359
# 3         ROCR  0.358
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].