Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

arkas

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arkas - npm Package Compare versions

Comparing version
0.0.1a6
to
0.0.1a7
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: arkas
Version: 0.0.1a6
Version: 0.0.1a7
Summary: Library to evaluate ML model performances

@@ -5,0 +5,0 @@ Home-page: https://github.com/durandtibo/arkas

[tool.poetry]
name = "arkas"
version = "0.0.1a6"
version = "0.0.1a7"
description = "Library to evaluate ML model performances"

@@ -5,0 +5,0 @@ readme = "README.md"

@@ -174,3 +174,3 @@ r"""Contain the implementation of a HTML content generator that returns

"""<details>
<summary>[show top-{{top}} pairwise column co-occurrence]</summary>
<summary>[show top-{{top}} pairwise column co-occurrence]</summary><br>
The following table shows the top-{{top}} pairwise column co-occurrences.

@@ -216,3 +216,3 @@ The co-occurrence matrix is symmetric and only the co-occurrences in the lower triangular matrix are shown.

# Fill the lower triangular part with -1 before to sort the occurrences
half_matrix = np.triu(matrix) - np.tril(np.ones_like(matrix), 1)
half_matrix = np.triu(matrix) - np.tril(np.ones_like(matrix), -1)
rows, cols = np.unravel_index(np.argsort(half_matrix, axis=None), matrix.shape)

@@ -219,0 +219,0 @@ n = matrix.shape[0]