MCPcopy Create free account

hub / github.com/d6t/d6tflow / types & classes

Types & classes177 in github.com/d6t/d6tflow

↓ 9 callersClassTaskTest
tests/test_main.py:374
↓ 6 callersClassTaskCollector
tests/test_main.py:450
↓ 5 callersClassGetData
tests/test_workflow.py:611
↓ 4 callersClassTask1
tests/test_workflowMulti.py:43
↓ 4 callersClassTask1
tests/test_workflow.py:10
↓ 3 callersClassBacktest
docs/example-trading.py:54
↓ 3 callersClassDataTrain
docs/example-ml-compare2.py:37
↓ 3 callersClassMetaLoad
tests/test_workflow.py:826
↓ 3 callersClassMetaSave
tests/test_workflow.py:798
↓ 3 callersClassModelTrainLGBM
docs/example-ml-compare2.py:57
↓ 3 callersClassTaskMultiInput
tests/test_main.py:133
↓ 3 callersClassTestTask
tests/test_main.py:184
↓ 3 callersClassWorkflow
Functional Flow class that acts as a manager of all flow steps. Defines all the decorators that can be used on flow functions.
d6tflow/functional.py:8
↓ 2 callersClassMissingParameterException
Raised when a required parameter has no value and no default.
d6tflow/parameter.py:25
↓ 2 callersClassOutputMetaSave3
tests/test_workflow.py:904
↓ 2 callersClassTask1
tests/test_main.py:77
↓ 2 callersClassTask3
tests/test_main.py:96
↓ 2 callersClassTaskLogger
Contextual logger facade returned by ``Task.logger``. Two things make it behave like the rest of d6tflow's logging: * It pre-binds the task'
d6tflow/log.py:55
↓ 2 callersClassTaskMultipleInput2
tests/test_workflow.py:553
↓ 2 callersClassTaskParam
tests/test_main.py:340
↓ 2 callersClassTaskSheetsList
tests/test_main.py:538
↓ 2 callersClassUnknownParameterException
Raised when an unknown parameter is supplied to a task.
d6tflow/parameter.py:30
↓ 2 callersClassdict_inherits
d6tflow/__init__.py:300
↓ 1 callersClassDuplicateParameterException
Raised when a parameter is supplied both positionally and as a keyword.
d6tflow/parameter.py:35
↓ 1 callersClassGetData
docs/example-onnx.py:9
↓ 1 callersClassModelTrainOLS
docs/example-ml-compare2.py:46
↓ 1 callersClassParameterException
Base parameter exception.
d6tflow/parameter.py:20
↓ 1 callersClassRunResult
Small result object consumed by ``d6tflow.run``.
d6tflow/core.py:442
↓ 1 callersClassTask1All
tests/for_import.py:35
↓ 1 callersClassTask3
tests/test_workflow.py:20
↓ 1 callersClassTaskDownstream
tests/test_main.py:566
↓ 1 callersClassTaskExcelDefault
tests/test_main.py:474
↓ 1 callersClassTaskGetModel
docs/example-tf.py:26
↓ 1 callersClassTaskGetTestData
docs/example-tf.py:17
↓ 1 callersClassTaskGetTrainData
docs/example-tf.py:8
↓ 1 callersClassTaskMultiInput2
tests/test_main.py:156
↓ 1 callersClassTaskMultipleInput
tests/test_workflow.py:540
↓ 1 callersClassTaskSheets
tests/test_main.py:495
↓ 1 callersClassTaskSheetsBad
tests/test_main.py:549
↓ 1 callersClassTaskSingleInput
tests/test_workflow.py:513
↓ 1 callersClassTaskSingleInput2
tests/test_workflow.py:524
↓ 1 callersClassTaskTestModel
docs/example-tf.py:53
↓ 1 callersClassTaskTrainModel
docs/example-tf.py:41
↓ 1 callersClassTradingSignals
docs/example-trading.py:29
↓ 1 callersClassTrainGBM
docs/example-onnx.py:32
↓ 1 callersClassTrainOLS
docs/example-onnx.py:19
↓ 1 callersClassWorkflow
The class is used to orchestrate tasks and define a task pipeline
d6tflow/__init__.py:361
↓ 1 callersClassdict_requires
d6tflow/__init__.py:328
↓ 1 callersClassdotdict
dot.notation access to dictionary attributes
d6tflow/__init__.py:955
↓ 1 callersClassinherits
Copy parameters (and nothing else) from one or more task classes onto the decorated task, and add ``clone_parent``/``clone_parents`` helpers.
d6tflow/core.py:348
ClassBoolParameter
A Parameter whose value is a ``bool``. Has an implicit default of ``False``.
d6tflow/parameter.py:109
ClassCSVGZPandasTarget
Saves to CSV gzip, loads to pandas dataframe
d6tflow/targets/__init__.py:166
ClassCSVPandasTarget
Saves to CSV, loads to pandas dataframe
d6tflow/targets/__init__.py:133
ClassCacheTarget
Saves to in-memory cache, loads to python object
d6tflow/targets/__init__.py:16
ClassDataTarget
Local target which saves in-memory data (eg dataframes) to persistent storage (eg files) and loads from storage to memory This is an abstrac
d6tflow/targets/__init__.py:85
ClassDatatableTarget
d6tflow/targets/dt.py:6
ClassDateParameter
Parameter whose value is a :py:class:`~datetime.date`, formatted ``YYYY-MM-DD``.
d6tflow/parameter.py:136
ClassDictParameter
Parameter whose value is a ``dict``. The value is stored as-is (no freezing); it is serialized with sorted keys so that the task id stay
d6tflow/parameter.py:159
ClassEnumParameter
A parameter whose value is an :class:`~enum.Enum`. Pass the enum class via ``enum=``:: class Model(enum.Enum): Honda = 1
d6tflow/parameter.py:196
ClassExcelPandasSheetsTarget
Saves dict of dataframes as sheets in a single Excel file, loads selectively by sheet
d6tflow/targets/__init__.py:220
ClassExcelPandasTarget
Saves to Excel, loads to pandas dataframe
d6tflow/targets/__init__.py:187
ClassFloatParameter
Parameter whose value is a ``float``.
d6tflow/parameter.py:102
ClassFlowExport
Auto generate task files to quickly share workflows with others. Args: tasks (obj): task or list of tasks to share flows (ob
d6tflow/__init__.py:813
ClassFlowImport
Import a specific module from a directory. Args: path (str): path to the dir to import from module (str): the module name to
d6tflow/__init__.py:901
ClassGetData
docs/example.py:6
ClassGetData
docs/example-ml-compare2.py:19
ClassGetData
docs/example-ml-compare-short.py:7
ClassGetData
docs/example-ml-compare-pseudo.py:5
ClassGetData
docs/example-ml-compare.py:7
ClassGetDataEcon
docs/example-trading.py:19
ClassGetDataPx
docs/example-trading.py:44
ClassH5KerasTarget
d6tflow/targets/tf.py:6
ClassH5PandasTarget
d6tflow/targets/h5.py:5
ClassIntParameter
Parameter whose value is an ``int``.
d6tflow/parameter.py:95
ClassJsonTarget
Saves to json, loads to dict
d6tflow/targets/__init__.py:306
ClassListParameter
Parameter whose value is a ``list``. The value is stored as-is (no freezing); it is serialized as JSON so that the task id stays determi
d6tflow/parameter.py:176
ClassLocalTarget
Tiny local target base. ``self.path`` is stored as-is (NOT coerced to ``str``); subclasses (``CacheTarget``/``_LocalPathTarget``) overri
d6tflow/core.py:329
ClassMarkdownTarget
Saves to markdown (.md) and HTML (.html), loads markdown string
d6tflow/targets/__init__.py:348
ClassMetaSave2
tests/test_workflow.py:842
ClassModelData
docs/example.py:16
ClassModelData
docs/example-ml-compare.py:17
ClassModelEvalAll
docs/example-ml-compare2.py:70
ClassModelFeatures
docs/example-ml-compare2.py:26
ClassModelTrain
docs/example.py:26
ClassModelTrain
docs/example-ml-compare-short.py:19
ClassModelTrain
docs/example-ml-compare-pseudo.py:13
ClassModelTrain
docs/example-ml-compare.py:27
ClassOutputMetaSave1
tests/test_workflow.py:893
ClassOutputMetaSave2
tests/test_workflow.py:900
ClassParameter
Parameter whose value is a ``str``, and the base class for the other parameter types. Parameters are set on the Task class to parameterize t
d6tflow/parameter.py:40
ClassPathTask1
tests/test_workflowMulti.py:179
ClassPathTask1
tests/test_workflow.py:657
ClassPathTask2
tests/test_workflowMulti.py:186
ClassPathTask2
tests/test_workflow.py:664
ClassPathTask3
tests/test_workflowMulti.py:194
ClassPathTask3
tests/test_workflow.py:672
ClassPathTaskMultiOutput
tests/test_workflowMulti.py:234
ClassPathTaskMultiOutput
tests/test_workflow.py:678
ClassPdCacheTarget
d6tflow/targets/__init__.py:59
ClassPickleTarget
Saves to pickle, loads to python obj
d6tflow/targets/__init__.py:412
next →1–100 of 177, ranked by callers