Commit 80e62e48 authored by magleb's avatar magleb
Browse files

some profile code

No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
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 = {}
......
......@@ -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.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment