MCPcopy Create free account
hub / github.com/FSoft-AI4Code/HyperAgent / __init__

Method __init__

src/hyperagent/tasks/base.py:9–15  ·  view source on GitHub ↗
(self, logdir, split, type, **kwargs)

Source from the content-addressed store, hash-verified

7
8class BaseTask:
9 def __init__(self, logdir, split, type, **kwargs):
10 self.logdir = logdir
11 self.split = split
12 self.type = type
13 self.kwargs = kwargs
14 self.subtasks = []
15 self.setup()
16
17 def setup(self):
18 raise NotImplementedError()

Callers

nothing calls this directly

Calls 1

setupMethod · 0.95

Tested by

no test coverage detected