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
80e62e48
Commit
80e62e48
authored
4 years ago
by
magleb
Browse files
Options
Download
Email Patches
Plain Diff
some profile code
parent
5a35e24d
230_profiler
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fedot/core/chains/chain_convert.py
+3
-0
fedot/core/chains/chain_convert.py
fedot/utilities/profile.py
+1
-4
fedot/utilities/profile.py
with
4 additions
and
4 deletions
+4
-4
fedot/core/chains/chain_convert.py
View file @
80e62e48
from
uuid
import
uuid4
from
log_calls
import
record_history
import
networkx
as
nx
from
fedot.core.chains.chain_template
import
ChainTemplate
@
record_history
(
enabled
=
False
)
def
chain_as_nx_graph
(
chain
:
'Chain'
):
graph
=
nx
.
DiGraph
()
node_labels
=
{}
...
...
@@ -25,6 +27,7 @@ def chain_as_nx_graph(chain: 'Chain'):
return
graph
,
node_labels
@
record_history
(
enabled
=
False
)
def
chain_template_as_nx_graph
(
chain
:
ChainTemplate
):
graph
=
nx
.
DiGraph
()
node_labels
=
{}
...
...
This diff is collapsed.
Click to expand it.
fedot/utilities/profile.py
View file @
80e62e48
...
...
@@ -2,7 +2,6 @@ import inspect
import
types
from
typing
import
Optional
import
copy
from
humanfriendly
import
format_timespan
import
networkx
as
nx
import
pandas
as
pd
...
...
@@ -23,7 +22,7 @@ class Profiler:
--------
>>> p = Profile()
>>> 'some code'
>>> p.profile(report.html)
>>> p.profile(
'
report.html
'
)
"""
_DROP_FUNCS
=
[
'get_record_history_wrapper'
,
'__repr__'
]
...
...
@@ -101,8 +100,6 @@ class Profiler:
'ff8000'
,
'ff7700'
,
'ff6e00'
,
'ff6400'
,
'ff5a00'
,
'ff4f00'
,
'ff4300'
,
'ff3500'
,
'ff2400'
,
'ff0000'
]
_ADD_MODULS
=
[
copy
]
def
__init__
(
self
,
drop_funcs
:
Optional
[
list
]
=
None
):
"""Profiler init function.
...
...
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