File: test.py

package info (click to toggle)
argus-clients 1%3A5.0.2%2Bgit20250321.41f65e2-2
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 45,848 kB
  • sloc: ansic: 175,393; perl: 4,405; sh: 4,064; makefile: 2,520; lex: 517; yacc: 433; python: 62
file content (9 lines) | stat: -rw-r--r-- 217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from __future__ import print_function, division

import argusPython as aw
import numpy as np

y_true = np.random.random(size=(2, 3))
y_pred = np.random.random(size=(2, 3))
s = aw.argus_critic(y_true, y_pred)
print(s)