MCPcopy Create free account
hub / github.com/CarperAI/Code-Pile / Processor

Class Processor

codepile/dataset.py:90–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88
89
90class Processor(ABC):
91 # logic for processing the datasets
92 # filtering out bad data
93 # data transformations
94 # if you wanna use kind a workflow, implement it in here
95 def process(self):
96 raise NotImplementedError()
97
98
99class Analyser(ABC):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected