Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • beat.web beat.web
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 54
    • Issues 54
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • beatbeat
  • beat.webbeat.web
  • Issues
  • #74
Closed
Open
Issue created Nov 14, 2014 by Manuel Günther@manuel.guenther

Error reading parameter for analysis block

I continue receiving "internal BEAT system error"s while trying to access a parameter in an analysis block. The relevant code is something like:

## INPUTS               
## scores:          tutorial/probe_scores/1
## INPUTS_END

## RESULTS          
## ROC:             beat/chart/1
## RESULTS_END

## PARAMETERS
## points:          uint16 100
## PARAMETERS_END

import bob

class Algorithm:

  def __init__(self):
    self.positives = []
    self.negatives = []
    
  def setup(self, parameters):
    self.points = parameters.get('points', 100)
    return True

  def process(self, inputs, output):
    ...
    roc = bob.measure.roc(self.negatives, self.positives, self.points)
    ...
    return True

(see https://www.beat-eu.org/platform/algorithms/siebenkopf/ROC/6, if you can).

Assignee
Assign to
Time tracking