Skip to content

Commit 99cd956

Browse files
committed
Use x86-64 instead amd64, fix typo
amd64 is too similar visually to arm64.
1 parent 54fe590 commit 99cd956

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use cellcast::models::stardist_2d_versatile_fluo;
3434

3535
fn main() {
3636
let data_2d = load_image("/path/to/data_2d.tif");
37-
let labels = stardist_2d_versatile_fluo(&data, Some(1.0), Some(99.8), None, None, True);
37+
let labels = stardist_2d_versatile_fluo.predict(&data, Some(1.0), Some(99.8), None, None, True);
3838
}
3939

4040
fn load_image(path: &str) -> Array2<u16> {
@@ -55,9 +55,9 @@ The `cellcast` Python package currently supports the following architectures:
5555

5656
| Operating System | Architecture |
5757
| :--- | :--- |
58-
| Linux | amd64 |
58+
| Linux | x86-64 |
5959
| macOS | intel, arm64 |
60-
| Windows | amd64 |
60+
| Windows | x86-64 |
6161

6262
Cellcast is compatible with Python `>=3.7`.
6363

cellcast_python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ The `cellcast` Python package currently supports the following architectures:
1616

1717
| Operating System | Architecture |
1818
| :--- | :--- |
19-
| Linux | amd64 |
19+
| Linux | x86-64 |
2020
| macOS | intel, arm64 |
21-
| Windows | amd64 |
21+
| Windows | x64-64 |
2222

2323
Cellcast is compatible with Python `>=3.7`.
2424

0 commit comments

Comments
 (0)