You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tss/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The neural radar development kit ships with a small statistical module (`nrdk.ts
44
44
```
45
45
where `rho_t` is the `t`-lag autocorrelation. The sum of autocorrelations is empirically estimated from the performance metrics, where the sum is calculated up to `N / 2` or the first negative autocorrelation, whichever is first.
46
46
47
-
For details about how we calculate this, see [`effective_sample_size`][tss.stats.effective_sample_size].
47
+
For details about how we calculate this, see [`effective_sample_size`][nrdk.tss.stats.effective_sample_size].
48
48
49
49
??? question "Why cut off when `rho_t` is negative?"
50
50
@@ -62,7 +62,7 @@ The neural radar development kit ships with a small statistical module (`nrdk.ts
62
62
63
63
## General Usage
64
64
65
-
In addition to using the [low level API][tss.stats], we provide a [CLI](#cli) and a [high level API][tss] which can be used to index results and evaluations, then load the evaluations and calculate statistics.
65
+
In addition to using the [low level API][nrdk.tss.stats], we provide a [CLI](#cli) and a [high level API][nrdk.tss] which can be used to index results and evaluations, then load the evaluations and calculate statistics.
66
66
67
67
### File Format
68
68
@@ -160,7 +160,7 @@ The file path to each evaluation, relative to some base path, should contain inf
160
160
161
161
## High Level API
162
162
163
-
**Index evaluations**: using [`index`][tss.index], provide a base path where the evaluations are stored, and a regex pattern for finding evaluation files and extracting their `experiment` and `trace` names.
163
+
**Index evaluations**: using [`index`][nrdk.tss.index], provide a base path where the evaluations are stored, and a regex pattern for finding evaluation files and extracting their `experiment` and `trace` names.
164
164
165
165
```python
166
166
import tss
@@ -178,7 +178,7 @@ index = tss.index_results(path, pattern)
178
178
a directory with 20k total files on a SMB share). You may want to
179
179
cache the index or save them to disk somewhere!
180
180
181
-
**Compute Statistics**: we provide a all-inclusive [`dataframe_from_index`][tss.dataframe_from_index] function which returns a dataframe containing summary statistics for the specified index, given a key of interest and baseline method.
181
+
**Compute Statistics**: we provide a all-inclusive [`dataframe_from_index`][nrdk.tss.dataframe_from_index] function which returns a dataframe containing summary statistics for the specified index, given a key of interest and baseline method.
0 commit comments