mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
[pycharm] PY-38294 Scientific view(task): "View as array" functionality for tensors
GitOrigin-RevId: 2320c5904609b2357dd860786ac7b89b96b3878c
This commit is contained in:
committed by
intellij-monorepo-bot
parent
b966d0247f
commit
650c59819e
@@ -30,10 +30,14 @@ import static com.jetbrains.python.debugger.PyDebugValueGroupsKt.*;
|
||||
|
||||
public class PyDebugValue extends XNamedValue {
|
||||
protected static final Logger LOG = Logger.getInstance(PyDebugValue.class);
|
||||
private static final String ARRAY = "Array";
|
||||
private static final String DATA_FRAME = "DataFrame";
|
||||
private static final String SERIES = "Series";
|
||||
private static final Map<String, String> EVALUATOR_POSTFIXES = ImmutableMap.of(
|
||||
"ndarray", "Array",
|
||||
"ndarray", ARRAY,
|
||||
"EagerTensor", ARRAY,
|
||||
"ResourceVariable", ARRAY,
|
||||
"Tensor", ARRAY,
|
||||
DATA_FRAME, DATA_FRAME,
|
||||
SERIES, SERIES,
|
||||
"GeoDataFrame", DATA_FRAME,
|
||||
|
||||
Reference in New Issue
Block a user