Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ITMO-NSS-team
FEDOT
Commits
8b16a240
Unverified
Commit
8b16a240
authored
1 year ago
by
Rosneft rosneft
Committed by
GitHub
1 year ago
Browse files
Options
Download
Email Patches
Plain Diff
Docs fix for atomized model (#1197)
* Docs fix
parent
70fc0339
master
0.7.3
1157-fix-2
922-preproc-acceleration
DRMPN-better-caching
DRMPN-fix-get-metrics
HEAD
ability_chosen_cats
add_direct_examples
add_topo2_speedup
ai-gen-docs
amlb-fixes
atomized-model-operation
bench-doc-0402
custom-automl-example
ensemble-operations
fi_exp_prep
fix-gitlab-mirroring
fix_issue_1296
generated-docs
hotfix-signature-function
hotfix-target_encoding
input_data_unit_tests
iopt-experiment
lgbm_impl
logging-fixes-for-golem-main
move-topo-in-extra
new-ensemble-operations
new-optimizer-for-ts-forecasting
operation-repo-refactor
release
release-075
repr-fix
temp-DRMPN-caching-class-variable
temp-branch-DRMPN-better-cachingytho
test_docu_bot
xgb_impl
v0.7.5
v0.7.4
v0.7.3.2
v0.7.3.1
v0.7.3
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/source/advanced/atomized_model.rst
+5
-4
docs/source/advanced/atomized_model.rst
with
5 additions
and
4 deletions
+5
-4
docs/source/advanced/atomized_model.rst
View file @
8b16a240
...
...
@@ -12,10 +12,11 @@ pipeline in the AtomizedModel class and all the functionality will be saved.
.. code-block:: python
from fedot.core.pipelines.node import PipelineNode
from fedot.core.pipelines.pipeline import Pipeline
from fedot.core.
model
s.atomized_model import AtomizedModel
from fedot.core.
operation
s.atomized_model import AtomizedModel
pipeline = Pipeline()
nested_pipeline = Pipeline()
atomized_model = AtomizedModel(nested_pipeline)
pipeline.add_node(atomized_model)
nested_pipeline = Pipeline(
PipelineNode('ridge')
)
atomized_model =
PipelineNode(
AtomizedModel(nested_pipeline)
)
pipeline.add_node(atomized_model)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help