canns 0.14.1__py3-none-any.whl → 0.14.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- canns/pipeline/asa_gui/analysis_modes/base.py +4 -0
- canns/pipeline/asa_gui/analysis_modes/cohomap_mode.py +11 -0
- canns/pipeline/asa_gui/analysis_modes/cohospace_mode.py +37 -0
- canns/pipeline/asa_gui/analysis_modes/decode_mode.py +13 -0
- canns/pipeline/asa_gui/analysis_modes/fr_mode.py +17 -0
- canns/pipeline/asa_gui/analysis_modes/frm_mode.py +17 -0
- canns/pipeline/asa_gui/analysis_modes/gridscore_mode.py +23 -0
- canns/pipeline/asa_gui/analysis_modes/pathcompare_mode.py +43 -0
- canns/pipeline/asa_gui/analysis_modes/tda_mode.py +27 -0
- canns/pipeline/asa_gui/resources/dark.qss +8 -0
- canns/pipeline/asa_gui/resources/light.qss +8 -0
- canns/pipeline/asa_gui/views/pages/analysis_page.py +7 -0
- canns/pipeline/asa_gui/views/pages/preprocess_page.py +29 -0
- {canns-0.14.1.dist-info → canns-0.14.2.dist-info}/METADATA +1 -1
- {canns-0.14.1.dist-info → canns-0.14.2.dist-info}/RECORD +18 -18
- {canns-0.14.1.dist-info → canns-0.14.2.dist-info}/WHEEL +0 -0
- {canns-0.14.1.dist-info → canns-0.14.2.dist-info}/entry_points.txt +0 -0
- {canns-0.14.1.dist-info → canns-0.14.2.dist-info}/licenses/LICENSE +0 -0
|
@@ -29,6 +29,10 @@ class AbstractAnalysisMode(ABC):
|
|
|
29
29
|
"""Apply neuron/time ranges based on loaded data."""
|
|
30
30
|
return None
|
|
31
31
|
|
|
32
|
+
def apply_language(self, lang: str) -> None:
|
|
33
|
+
"""Apply localized tooltips/text."""
|
|
34
|
+
return None
|
|
35
|
+
|
|
32
36
|
|
|
33
37
|
def configure_form_layout(form: QFormLayout) -> None:
|
|
34
38
|
"""Apply consistent spacing/alignment for analysis parameter forms."""
|
|
@@ -54,3 +54,14 @@ class CohoMapMode(AbstractAnalysisMode):
|
|
|
54
54
|
self.num_circ.setValue(2)
|
|
55
55
|
elif preset == "hd":
|
|
56
56
|
self.num_circ.setValue(1)
|
|
57
|
+
|
|
58
|
+
def apply_language(self, lang: str) -> None:
|
|
59
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
60
|
+
if is_zh:
|
|
61
|
+
self.decode_version.setToolTip("解码版本(推荐 v2)。")
|
|
62
|
+
self.num_circ.setToolTip("解码圆数(grid 常用 2,hd 常用 1)。")
|
|
63
|
+
self.subsample.setToolTip("CohoMap 绘制下采样步长。")
|
|
64
|
+
else:
|
|
65
|
+
self.decode_version.setToolTip("Decode version (recommend v2).")
|
|
66
|
+
self.num_circ.setToolTip("Number of circles to decode (grid=2, hd=1).")
|
|
67
|
+
self.subsample.setToolTip("Subsample step for CohoMap plotting.")
|
|
@@ -192,3 +192,40 @@ class CohoSpaceMode(AbstractAnalysisMode):
|
|
|
192
192
|
val = self.neuron_id.value() + int(delta)
|
|
193
193
|
val = max(self.neuron_id.minimum(), min(self.neuron_id.maximum(), val))
|
|
194
194
|
self.neuron_id.setValue(val)
|
|
195
|
+
|
|
196
|
+
def apply_language(self, lang: str) -> None:
|
|
197
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
198
|
+
if is_zh:
|
|
199
|
+
self.dim_mode.setToolTip("解码维度模式(1D/2D)。")
|
|
200
|
+
self.dim.setToolTip("1D 解码维度索引。")
|
|
201
|
+
self.dim1.setToolTip("2D 解码维度 1。")
|
|
202
|
+
self.dim2.setToolTip("2D 解码维度 2。")
|
|
203
|
+
self.mode.setToolTip("spike 或 fr 模式。")
|
|
204
|
+
self.top_percent.setToolTip("活跃点百分比阈值。")
|
|
205
|
+
self.view.setToolTip("显示单神经元或群体。")
|
|
206
|
+
self.subsample.setToolTip("轨迹下采样步长。")
|
|
207
|
+
self.unfold.setToolTip("展开方式(square / skew)。")
|
|
208
|
+
self.skew_show_grid.setToolTip("skew 模式下显示网格。")
|
|
209
|
+
self.skew_tiles.setToolTip("skew 平铺次数。")
|
|
210
|
+
self.enable_score.setToolTip("计算 CohoScore 并选 top-K。")
|
|
211
|
+
self.top_k.setToolTip("Top-K 神经元数量。")
|
|
212
|
+
self.neuron_id.setToolTip("单神经元编号。")
|
|
213
|
+
self.use_best.setToolTip("使用 CohoScore 最小的神经元。")
|
|
214
|
+
self.btn_show.setToolTip("显示当前 neuron 结果。")
|
|
215
|
+
else:
|
|
216
|
+
self.dim_mode.setToolTip("Decode dimension mode (1D/2D).")
|
|
217
|
+
self.dim.setToolTip("1D decoded dimension index.")
|
|
218
|
+
self.dim1.setToolTip("2D decoded dimension 1.")
|
|
219
|
+
self.dim2.setToolTip("2D decoded dimension 2.")
|
|
220
|
+
self.mode.setToolTip("spike or fr mode.")
|
|
221
|
+
self.top_percent.setToolTip("Active percentile threshold.")
|
|
222
|
+
self.view.setToolTip("Show single neuron or population.")
|
|
223
|
+
self.subsample.setToolTip("Trajectory subsample step.")
|
|
224
|
+
self.unfold.setToolTip("Unfold mode (square / skew).")
|
|
225
|
+
self.skew_show_grid.setToolTip("Show grid in skew mode.")
|
|
226
|
+
self.skew_tiles.setToolTip("Skew tiling count.")
|
|
227
|
+
self.enable_score.setToolTip("Compute CohoScore and top-K.")
|
|
228
|
+
self.top_k.setToolTip("Top-K neuron count.")
|
|
229
|
+
self.neuron_id.setToolTip("Single neuron id.")
|
|
230
|
+
self.use_best.setToolTip("Use neuron with lowest CohoScore.")
|
|
231
|
+
self.btn_show.setToolTip("Show current neuron result.")
|
|
@@ -50,3 +50,16 @@ class DecodeMode(AbstractAnalysisMode):
|
|
|
50
50
|
self.num_circ.setValue(2)
|
|
51
51
|
elif preset == "hd":
|
|
52
52
|
self.num_circ.setValue(1)
|
|
53
|
+
|
|
54
|
+
def apply_language(self, lang: str) -> None:
|
|
55
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
56
|
+
if is_zh:
|
|
57
|
+
self.decode_version.setToolTip("解码版本(推荐 v2)。")
|
|
58
|
+
self.num_circ.setToolTip("解码圆数(grid=2,hd=1)。")
|
|
59
|
+
self.real_ground.setToolTip("是否使用 real_ground。")
|
|
60
|
+
self.real_of.setToolTip("是否使用 real_of。")
|
|
61
|
+
else:
|
|
62
|
+
self.decode_version.setToolTip("Decode version (recommend v2).")
|
|
63
|
+
self.num_circ.setToolTip("Number of circles to decode (grid=2, hd=1).")
|
|
64
|
+
self.real_ground.setToolTip("Use real_ground if available.")
|
|
65
|
+
self.real_of.setToolTip("Use real_of if available.")
|
|
@@ -79,3 +79,20 @@ class FRMode(AbstractAnalysisMode):
|
|
|
79
79
|
self.time_end.setRange(0, total_steps)
|
|
80
80
|
if self.time_end.value() == 0:
|
|
81
81
|
self.time_end.setValue(total_steps)
|
|
82
|
+
|
|
83
|
+
def apply_language(self, lang: str) -> None:
|
|
84
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
85
|
+
if is_zh:
|
|
86
|
+
self.normalize.setToolTip("归一化方式;none 表示不归一化。")
|
|
87
|
+
self.mode.setToolTip("fr 需要预处理;spike 直接用事件。")
|
|
88
|
+
self.neuron_start.setToolTip("神经元起始索引。")
|
|
89
|
+
self.neuron_end.setToolTip("神经元结束索引(不包含)。")
|
|
90
|
+
self.time_start.setToolTip("时间起始索引。")
|
|
91
|
+
self.time_end.setToolTip("时间结束索引(不包含)。")
|
|
92
|
+
else:
|
|
93
|
+
self.normalize.setToolTip("Normalization method; none = no normalization.")
|
|
94
|
+
self.mode.setToolTip("fr requires preprocess; spike uses events directly.")
|
|
95
|
+
self.neuron_start.setToolTip("Start neuron index.")
|
|
96
|
+
self.neuron_end.setToolTip("End neuron index (exclusive).")
|
|
97
|
+
self.time_start.setToolTip("Start time index.")
|
|
98
|
+
self.time_end.setToolTip("End time index (exclusive).")
|
|
@@ -86,6 +86,23 @@ class FRMMode(AbstractAnalysisMode):
|
|
|
86
86
|
return
|
|
87
87
|
self.neuron_id.setRange(0, max(0, neuron_count - 1))
|
|
88
88
|
|
|
89
|
+
def apply_language(self, lang: str) -> None:
|
|
90
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
91
|
+
if is_zh:
|
|
92
|
+
self.neuron_id.setToolTip("要查看的神经元编号。")
|
|
93
|
+
self.bin_size.setToolTip("空间分箱大小。")
|
|
94
|
+
self.min_occupancy.setToolTip("最小占据数。")
|
|
95
|
+
self.smoothing.setToolTip("是否启用平滑。")
|
|
96
|
+
self.smooth_sigma.setToolTip("平滑强度(sigma)。")
|
|
97
|
+
self.mode.setToolTip("fr 需要预处理;spike 直接用事件。")
|
|
98
|
+
else:
|
|
99
|
+
self.neuron_id.setToolTip("Neuron index to inspect.")
|
|
100
|
+
self.bin_size.setToolTip("Spatial bin size.")
|
|
101
|
+
self.min_occupancy.setToolTip("Minimum occupancy.")
|
|
102
|
+
self.smoothing.setToolTip("Enable smoothing.")
|
|
103
|
+
self.smooth_sigma.setToolTip("Smoothing strength (sigma).")
|
|
104
|
+
self.mode.setToolTip("fr requires preprocess; spike uses events directly.")
|
|
105
|
+
|
|
89
106
|
def _shift(self, delta: int) -> None:
|
|
90
107
|
val = self.neuron_id.value() + int(delta)
|
|
91
108
|
val = max(self.neuron_id.minimum(), min(self.neuron_id.maximum(), val))
|
|
@@ -117,6 +117,29 @@ class GridScoreMode(AbstractAnalysisMode):
|
|
|
117
117
|
if "neuron_id" in meta:
|
|
118
118
|
self.neuron_id.setValue(int(meta["neuron_id"]))
|
|
119
119
|
|
|
120
|
+
def apply_language(self, lang: str) -> None:
|
|
121
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
122
|
+
if is_zh:
|
|
123
|
+
self.neuron_start.setToolTip("神经元起始索引。")
|
|
124
|
+
self.neuron_end.setToolTip("神经元结束索引(不包含)。")
|
|
125
|
+
self.bins.setToolTip("空间分箱数。")
|
|
126
|
+
self.min_occupancy.setToolTip("最小占据数。")
|
|
127
|
+
self.smoothing.setToolTip("是否启用平滑(需 scipy)。")
|
|
128
|
+
self.sigma.setToolTip("平滑强度(sigma)。")
|
|
129
|
+
self.overlap.setToolTip("自相关重叠比例。")
|
|
130
|
+
self.mode.setToolTip("fr 需要预处理;spike 直接用事件。")
|
|
131
|
+
self.score_thr.setToolTip("可视化阈值(仅显示)。")
|
|
132
|
+
else:
|
|
133
|
+
self.neuron_start.setToolTip("Start neuron index.")
|
|
134
|
+
self.neuron_end.setToolTip("End neuron index (exclusive).")
|
|
135
|
+
self.bins.setToolTip("Spatial bin count.")
|
|
136
|
+
self.min_occupancy.setToolTip("Minimum occupancy.")
|
|
137
|
+
self.smoothing.setToolTip("Enable smoothing (requires scipy).")
|
|
138
|
+
self.sigma.setToolTip("Smoothing strength (sigma).")
|
|
139
|
+
self.overlap.setToolTip("Autocorrelation overlap ratio.")
|
|
140
|
+
self.mode.setToolTip("fr requires preprocess; spike uses events directly.")
|
|
141
|
+
self.score_thr.setToolTip("Visualization threshold only.")
|
|
142
|
+
|
|
120
143
|
|
|
121
144
|
class GridScoreInspectMode(GridScoreMode):
|
|
122
145
|
name = "gridscore_inspect"
|
|
@@ -197,3 +197,46 @@ class PathCompareMode(AbstractAnalysisMode):
|
|
|
197
197
|
"no_wrap": bool(self.no_wrap.isChecked()),
|
|
198
198
|
"animation_format": "gif" if self.save_gif.isChecked() else "none",
|
|
199
199
|
}
|
|
200
|
+
|
|
201
|
+
def apply_language(self, lang: str) -> None:
|
|
202
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
203
|
+
if is_zh:
|
|
204
|
+
self.angle_scale.setToolTip("角度尺度:auto / rad / deg / unit。")
|
|
205
|
+
self.dim_mode.setToolTip("解码维度模式(1D/2D)。")
|
|
206
|
+
self.dim.setToolTip("1D 解码维度索引。")
|
|
207
|
+
self.dim1.setToolTip("2D 解码维度 1。")
|
|
208
|
+
self.dim2.setToolTip("2D 解码维度 2。")
|
|
209
|
+
self.use_box.setToolTip("使用 coordsbox / times_box 对齐(推荐速度过滤后开启)。")
|
|
210
|
+
self.interp_full.setToolTip("插值回完整轨迹。")
|
|
211
|
+
self.coords_key.setToolTip("可选:解码坐标键(默认 coords/coordsbox)。")
|
|
212
|
+
self.times_key.setToolTip("可选:times_box 键名。")
|
|
213
|
+
self.slice_mode.setToolTip("按时间或索引裁剪。")
|
|
214
|
+
self.tmin.setToolTip("起始时间(秒),-1 自动。")
|
|
215
|
+
self.tmax.setToolTip("结束时间(秒),-1 自动。")
|
|
216
|
+
self.imin.setToolTip("起始索引,-1 自动。")
|
|
217
|
+
self.imax.setToolTip("结束索引,-1 自动。")
|
|
218
|
+
self.stride.setToolTip("采样步长。")
|
|
219
|
+
self.tail.setToolTip("尾迹长度(帧)。")
|
|
220
|
+
self.fps.setToolTip("动画帧率。")
|
|
221
|
+
self.no_wrap.setToolTip("禁用角度环绕。")
|
|
222
|
+
self.save_gif.setToolTip("保存 GIF 动画。")
|
|
223
|
+
else:
|
|
224
|
+
self.angle_scale.setToolTip("Angle scale: auto / rad / deg / unit.")
|
|
225
|
+
self.dim_mode.setToolTip("Decode dimension mode (1D/2D).")
|
|
226
|
+
self.dim.setToolTip("1D decoded dimension index.")
|
|
227
|
+
self.dim1.setToolTip("2D decoded dimension 1.")
|
|
228
|
+
self.dim2.setToolTip("2D decoded dimension 2.")
|
|
229
|
+
self.use_box.setToolTip("Use coordsbox/times_box alignment (recommended with speed_filter).")
|
|
230
|
+
self.interp_full.setToolTip("Interpolate back to full trajectory.")
|
|
231
|
+
self.coords_key.setToolTip("Optional decode coords key (default coords/coordsbox).")
|
|
232
|
+
self.times_key.setToolTip("Optional times_box key.")
|
|
233
|
+
self.slice_mode.setToolTip("Slice by time or index.")
|
|
234
|
+
self.tmin.setToolTip("Start time (sec), -1 = auto.")
|
|
235
|
+
self.tmax.setToolTip("End time (sec), -1 = auto.")
|
|
236
|
+
self.imin.setToolTip("Start index, -1 = auto.")
|
|
237
|
+
self.imax.setToolTip("End index, -1 = auto.")
|
|
238
|
+
self.stride.setToolTip("Sampling stride.")
|
|
239
|
+
self.tail.setToolTip("Trail length (frames).")
|
|
240
|
+
self.fps.setToolTip("Animation FPS.")
|
|
241
|
+
self.no_wrap.setToolTip("Disable angle wrap.")
|
|
242
|
+
self.save_gif.setToolTip("Save GIF animation.")
|
|
@@ -110,3 +110,30 @@ class TDAMode(AbstractAnalysisMode):
|
|
|
110
110
|
self.maxdim.setValue(2)
|
|
111
111
|
elif preset == "hd":
|
|
112
112
|
self.maxdim.setValue(1)
|
|
113
|
+
|
|
114
|
+
def apply_language(self, lang: str) -> None:
|
|
115
|
+
is_zh = str(lang).lower().startswith("zh")
|
|
116
|
+
if is_zh:
|
|
117
|
+
self.dim.setToolTip("PCA 维度(常见起点 6–12)。")
|
|
118
|
+
self.num_times.setToolTip("时间下采样步长;越大越快但可能丢细节。")
|
|
119
|
+
self.active_times.setToolTip("选取最活跃时间点数;过小不稳,过大更慢。")
|
|
120
|
+
self.k.setToolTip("采样/去噪相关参数,影响速度与稳定性。")
|
|
121
|
+
self.n_points.setToolTip("点云代表点数量,越大越慢。")
|
|
122
|
+
self.metric.setToolTip("距离度量;推荐 cosine。")
|
|
123
|
+
self.nbs.setToolTip("邻域规模参数,影响稳定性与速度。")
|
|
124
|
+
self.maxdim.setToolTip("最大同调维度;先 1 再 2。")
|
|
125
|
+
self.coeff.setToolTip("有限域系数(默认 47)。")
|
|
126
|
+
self.do_shuffle.setToolTip("显著性检验;代价高,建议少量。")
|
|
127
|
+
self.num_shuffles.setToolTip("Shuffle 次数(越多越慢)。")
|
|
128
|
+
else:
|
|
129
|
+
self.dim.setToolTip("PCA dimension (typical 6–12).")
|
|
130
|
+
self.num_times.setToolTip("Time downsampling step; larger is faster but less detail.")
|
|
131
|
+
self.active_times.setToolTip("Number of most active points; too small is unstable.")
|
|
132
|
+
self.k.setToolTip("Sampling/denoising parameter; affects speed/stability.")
|
|
133
|
+
self.n_points.setToolTip("Number of representative points; larger is slower.")
|
|
134
|
+
self.metric.setToolTip("Distance metric; recommend cosine.")
|
|
135
|
+
self.nbs.setToolTip("Neighborhood parameter; affects stability and speed.")
|
|
136
|
+
self.maxdim.setToolTip("Max homology dimension; start with 1, then 2.")
|
|
137
|
+
self.coeff.setToolTip("Finite field coefficient (default 47).")
|
|
138
|
+
self.do_shuffle.setToolTip("Significance test; expensive, keep small.")
|
|
139
|
+
self.num_shuffles.setToolTip("Number of shuffles (more is slower).")
|
|
@@ -14,6 +14,14 @@ QLabel#muted {
|
|
|
14
14
|
color: #9ca3af;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
QToolTip {
|
|
18
|
+
color: #e5e7eb;
|
|
19
|
+
background-color: #111827;
|
|
20
|
+
border: 1px solid #4b5563;
|
|
21
|
+
border-radius: 4px;
|
|
22
|
+
padding: 4px 8px;
|
|
23
|
+
}
|
|
24
|
+
|
|
17
25
|
QFrame#card, QGroupBox#card {
|
|
18
26
|
background-color: #1f2937;
|
|
19
27
|
border: 1px solid #374151;
|
|
@@ -14,6 +14,14 @@ QLabel#muted {
|
|
|
14
14
|
color: #6b7280;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
+
QToolTip {
|
|
18
|
+
color: #111827;
|
|
19
|
+
background-color: #fef3c7;
|
|
20
|
+
border: 1px solid #f59e0b;
|
|
21
|
+
border-radius: 4px;
|
|
22
|
+
padding: 4px 8px;
|
|
23
|
+
}
|
|
24
|
+
|
|
17
25
|
QFrame#card, QGroupBox#card {
|
|
18
26
|
background-color: #ffffff;
|
|
19
27
|
border: 1px solid #e5e7eb;
|
|
@@ -206,6 +206,9 @@ class AnalysisPage(QWidget):
|
|
|
206
206
|
self.run_btn.setText("运行分析" if is_zh else "Run Analysis")
|
|
207
207
|
self.stop_btn.setText("停止" if is_zh else "Stop")
|
|
208
208
|
self.logs_label.setText("日志" if is_zh else "Logs")
|
|
209
|
+
self.analysis_mode.setToolTip(
|
|
210
|
+
"选择分析模块" if is_zh else "Select an analysis mode to run."
|
|
211
|
+
)
|
|
209
212
|
|
|
210
213
|
if self._last_state is not None:
|
|
211
214
|
self._update_info(self._last_state)
|
|
@@ -216,6 +219,10 @@ class AnalysisPage(QWidget):
|
|
|
216
219
|
else "Mode=— | preset=— | preprocess=— | spike_main_shape=—"
|
|
217
220
|
)
|
|
218
221
|
|
|
222
|
+
for mode in self._modes.values():
|
|
223
|
+
if hasattr(mode, "apply_language"):
|
|
224
|
+
mode.apply_language(self._lang)
|
|
225
|
+
|
|
219
226
|
def load_state(self, state) -> None:
|
|
220
227
|
self._last_state = state
|
|
221
228
|
self._update_info(state)
|
|
@@ -317,6 +317,35 @@ class PreprocessPage(QWidget):
|
|
|
317
317
|
self.stop_btn.setText("停止" if is_zh else "Stop")
|
|
318
318
|
self.logs_label.setText("日志" if is_zh else "Logs")
|
|
319
319
|
|
|
320
|
+
self.input_mode.setToolTip(
|
|
321
|
+
"仅支持 ASA .npz 输入" if is_zh else "Only ASA .npz input is supported in this GUI."
|
|
322
|
+
)
|
|
323
|
+
self.preprocess_method.setToolTip(
|
|
324
|
+
"嵌入会生成稠密矩阵供 TDA/FR 使用"
|
|
325
|
+
if is_zh
|
|
326
|
+
else "Embedding builds a dense spike matrix for TDA/FR."
|
|
327
|
+
)
|
|
328
|
+
self.embed_res.setToolTip(
|
|
329
|
+
"时间分箱分辨率(与 t 单位一致)。" if is_zh else "Time bin resolution (same unit as t)."
|
|
330
|
+
)
|
|
331
|
+
self.embed_dt.setToolTip(
|
|
332
|
+
"时间步长(与 t 单位一致)。" if is_zh else "Time step (same unit as t)."
|
|
333
|
+
)
|
|
334
|
+
self.embed_sigma.setToolTip(
|
|
335
|
+
"高斯平滑尺度,越大越平滑。" if is_zh else "Gaussian smoothing scale."
|
|
336
|
+
)
|
|
337
|
+
self.embed_smooth.setToolTip("是否启用平滑。" if is_zh else "Enable smoothing.")
|
|
338
|
+
self.embed_speed_filter.setToolTip(
|
|
339
|
+
"过滤低速时间点(常见于 grid 数据)。"
|
|
340
|
+
if is_zh
|
|
341
|
+
else "Remove low-speed samples (common for grid data)."
|
|
342
|
+
)
|
|
343
|
+
self.embed_min_speed.setToolTip(
|
|
344
|
+
"速度阈值(与 t/x/y 单位一致)。"
|
|
345
|
+
if is_zh
|
|
346
|
+
else "Speed threshold (same unit as t/x/y)."
|
|
347
|
+
)
|
|
348
|
+
|
|
320
349
|
def _show_help(self) -> None:
|
|
321
350
|
lang = str(QSettings("canns", "asa_gui").value("lang", "en"))
|
|
322
351
|
title = (
|
|
@@ -86,16 +86,16 @@ canns/pipeline/asa_gui/__main__.py,sha256=2UOQtIE5oXkcq9HcuY13M3Jk6-uaDu8A0VJfvr
|
|
|
86
86
|
canns/pipeline/asa_gui/app.py,sha256=Wd-tVGNPE1mQ0S9bET-cyjfj5UWsTIFFHOQRu0lngBs,833
|
|
87
87
|
canns/pipeline/asa_gui/main_window.py,sha256=kQp8DTmp7SuYVCglh5lVja7DyQ7hAOxPgCEUmjKHgbk,7019
|
|
88
88
|
canns/pipeline/asa_gui/analysis_modes/__init__.py,sha256=m5tra-3lOcKi09HV3WxvTnDuF5lgV92C_fHH_4V87zw,990
|
|
89
|
-
canns/pipeline/asa_gui/analysis_modes/base.py,sha256
|
|
89
|
+
canns/pipeline/asa_gui/analysis_modes/base.py,sha256=SqZhsD6umV0ecHGca5FcCx7G2eeskE8HZToRBc3Y5AA,1335
|
|
90
90
|
canns/pipeline/asa_gui/analysis_modes/batch_mode.py,sha256=sua3cD6G4vTGT7fUSrdvYNwldA3KZ1O4MCCsSOX4knc,531
|
|
91
|
-
canns/pipeline/asa_gui/analysis_modes/cohomap_mode.py,sha256=
|
|
92
|
-
canns/pipeline/asa_gui/analysis_modes/cohospace_mode.py,sha256=
|
|
93
|
-
canns/pipeline/asa_gui/analysis_modes/decode_mode.py,sha256=
|
|
94
|
-
canns/pipeline/asa_gui/analysis_modes/fr_mode.py,sha256=
|
|
95
|
-
canns/pipeline/asa_gui/analysis_modes/frm_mode.py,sha256=
|
|
96
|
-
canns/pipeline/asa_gui/analysis_modes/gridscore_mode.py,sha256=
|
|
97
|
-
canns/pipeline/asa_gui/analysis_modes/pathcompare_mode.py,sha256=
|
|
98
|
-
canns/pipeline/asa_gui/analysis_modes/tda_mode.py,sha256=
|
|
91
|
+
canns/pipeline/asa_gui/analysis_modes/cohomap_mode.py,sha256=kIB9zzh_hmhxSXFrv8FLabFLkOp_FhBOs1t_2gPass4,2360
|
|
92
|
+
canns/pipeline/asa_gui/analysis_modes/cohospace_mode.py,sha256=yfLpw0-Q9oMiCIJg-ca_v93__OgXfrGeEFd9DsOc0a4,9368
|
|
93
|
+
canns/pipeline/asa_gui/analysis_modes/decode_mode.py,sha256=uEe3lfWAA0pqmCXzNpaA3A1nrDedTN43_f1R_ssg_A8,2304
|
|
94
|
+
canns/pipeline/asa_gui/analysis_modes/fr_mode.py,sha256=xzx1RhGVDbx6huEtEHGfUqWgRN_C6Sf-Ycj9BzIgTRY,3961
|
|
95
|
+
canns/pipeline/asa_gui/analysis_modes/frm_mode.py,sha256=8rgh_P7dxYJfx2TxrhD00Ja6tK0q6NboqwZ7n0Sw_2U,3992
|
|
96
|
+
canns/pipeline/asa_gui/analysis_modes/gridscore_mode.py,sha256=XC-O2lMx3NPxUkSoZo_69g7B_yFAYUnKIPKLj9-gKM4,5712
|
|
97
|
+
canns/pipeline/asa_gui/analysis_modes/pathcompare_mode.py,sha256=ODG6hxtRNj5CxeJgfr1JiX6AuokyBrPVBvTTJnd5SPw,9600
|
|
98
|
+
canns/pipeline/asa_gui/analysis_modes/tda_mode.py,sha256=xnsWv_zfstzYPf_nLbQkCNHxxhYRznz4m-73ClaBQKs,6094
|
|
99
99
|
canns/pipeline/asa_gui/controllers/__init__.py,sha256=RuQz960T4kEuQsBI_cjS0cQgFyqAdblLXy_dDoLPbTE,198
|
|
100
100
|
canns/pipeline/asa_gui/controllers/analysis_controller.py,sha256=8cKs-RYHh_NflP7xeS0u0_y9WsZ268H1Wyp-wHZC97I,1769
|
|
101
101
|
canns/pipeline/asa_gui/controllers/preprocess_controller.py,sha256=uNZifNGadYPxAVyWnfonOs5pwCgxwB1nrBGqvv8Y3hU,2825
|
|
@@ -109,8 +109,8 @@ canns/pipeline/asa_gui/models/config.py,sha256=oDAeNlReKJEITc8B5AT9xxQl3Ug1yaGs6
|
|
|
109
109
|
canns/pipeline/asa_gui/models/job.py,sha256=_HdhJIzdH9OSKrRpcl3WCS4O04Bvur5uT9yb9oOWBuE,852
|
|
110
110
|
canns/pipeline/asa_gui/models/presets.py,sha256=zEtR1_35ovSuGa3xMOvZoVDJJUK0rSi8OOlfkQWFvFE,519
|
|
111
111
|
canns/pipeline/asa_gui/resources/__init__.py,sha256=xaC4dS2THCTTKOF6MDHMOGGPni9Nnjmeqj7fCaoxzwI,575
|
|
112
|
-
canns/pipeline/asa_gui/resources/dark.qss,sha256=
|
|
113
|
-
canns/pipeline/asa_gui/resources/light.qss,sha256=
|
|
112
|
+
canns/pipeline/asa_gui/resources/dark.qss,sha256=xqlPIFtnKKfBJbcL-kZ-qwFKTl9ADEU2mN7PDJiT7SE,3132
|
|
113
|
+
canns/pipeline/asa_gui/resources/light.qss,sha256=PuFpiWoU3qfGczTWlSjkHGDpMr3Jh0x6SZ0hdCvg_b4,3025
|
|
114
114
|
canns/pipeline/asa_gui/resources/logo.ico,sha256=V54_QvIzs6TK1K28zX915taioAM1gPESAKRCRPAjR4U,125806
|
|
115
115
|
canns/pipeline/asa_gui/resources/logo.svg,sha256=UQqbGRtnROO2BdN3XMkovdBqWew69Z9Sr7SUof2_n3o,48323
|
|
116
116
|
canns/pipeline/asa_gui/resources/styles.qss,sha256=MaWWGn3f9yvOYpgdgy8VyITWk5vGGPut2H_rnQM4-EU,2188
|
|
@@ -121,8 +121,8 @@ canns/pipeline/asa_gui/utils/validators.py,sha256=x5Tw2Pk434vlfQKBYgUOJPL6MLw0Oh
|
|
|
121
121
|
canns/pipeline/asa_gui/views/__init__.py,sha256=ThoLlMw7bKxA7lkv_AvIR1mbpaoM0vkIxVP1p7mlzQM,28
|
|
122
122
|
canns/pipeline/asa_gui/views/help_content.py,sha256=kL7MSwc9v3gHLz86Apiy64xbwymt9r7sPEjz5ka6EB0,8452
|
|
123
123
|
canns/pipeline/asa_gui/views/pages/__init__.py,sha256=xB7VTY_hKfoCNMGeWZbV3gHG9ErrzmwqW30UlUkbqgE,161
|
|
124
|
-
canns/pipeline/asa_gui/views/pages/analysis_page.py,sha256=
|
|
125
|
-
canns/pipeline/asa_gui/views/pages/preprocess_page.py,sha256=
|
|
124
|
+
canns/pipeline/asa_gui/views/pages/analysis_page.py,sha256=X6PGW_cgvAiNFqUpsS2TuVWl258Q6Q90C9NEQT1TetQ,22807
|
|
125
|
+
canns/pipeline/asa_gui/views/pages/preprocess_page.py,sha256=ds8BHq4a9nsu3aAoojFR_jegO2RXNVYdgf3BnIxIG7M,20762
|
|
126
126
|
canns/pipeline/asa_gui/views/panels/__init__.py,sha256=Spqmc0Sjh38cgr42gszmiogZQFFOLN1yL7ekSpVJCrE,36
|
|
127
127
|
canns/pipeline/asa_gui/views/widgets/__init__.py,sha256=xaTYXw99OL8ye1cpfoKgSwqC7c2B6lrLLsYHRB16m64,481
|
|
128
128
|
canns/pipeline/asa_gui/views/widgets/artifacts_tab.py,sha256=U_fuOCfSmkDhx3G97aod-8UPSIFVz_MrsU4b_ik_5qE,1431
|
|
@@ -158,8 +158,8 @@ canns/trainer/utils.py,sha256=ZdoLiRqFLfKXsWi0KX3wGUp0OqFikwiou8dPf3xvFhE,2847
|
|
|
158
158
|
canns/typing/__init__.py,sha256=mXySdfmD8fA56WqZTb1Nj-ZovcejwLzNjuk6PRfTwmA,156
|
|
159
159
|
canns/utils/__init__.py,sha256=OMyZ5jqZAIUS2Jr0qcnvvrx6YM-BZ1EJy5uZYeA3HC0,366
|
|
160
160
|
canns/utils/benchmark.py,sha256=oJ7nvbvnQMh4_MZh7z160NPLp-197X0rEnmnLHYlev4,1361
|
|
161
|
-
canns-0.14.
|
|
162
|
-
canns-0.14.
|
|
163
|
-
canns-0.14.
|
|
164
|
-
canns-0.14.
|
|
165
|
-
canns-0.14.
|
|
161
|
+
canns-0.14.2.dist-info/METADATA,sha256=QfJB-3QkIfsgIgwtY9jTYbzmvitph_jYNSGM1IDuvHg,9751
|
|
162
|
+
canns-0.14.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
163
|
+
canns-0.14.2.dist-info/entry_points.txt,sha256=57YF2HZp_BG3GeGB8L0m3wR1sSfNyMXF1q4CKEjce6U,164
|
|
164
|
+
canns-0.14.2.dist-info/licenses/LICENSE,sha256=u6NJ1N-QSnf5yTwSk5UvFAdU2yKD0jxG0Xa91n1cPO4,11306
|
|
165
|
+
canns-0.14.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|