Skip to content

Commit de4a9fd

Browse files
iraedeusvkutuev
authored andcommitted
fix: oneliners and english instead russian
1 parent 43f780f commit de4a9fd

3 files changed

Lines changed: 15 additions & 19 deletions

File tree

.github/workflows/linux_installation.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ jobs:
1717

1818
- name: Run installation script
1919
run: |
20-
chmod +x scripts/install_user_linux.sh
21-
./scripts/install_user_linux.sh
20+
chmod +x scripts/install_user_linux.sh && ./scripts/install_user_linux.sh
2221
2322
- name: Run example
2423
run: poetry run python example.py

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ Go to repository directory and run installation script:
4949

5050
```bash
5151
cd pysatl-cpd
52-
chmod +x scripts/install_user_linux.sh
53-
./install_user_linux.sh
52+
chmod +x scripts/install_user_linux.sh && ./scripts/install_user_linux.sh
5453
```
5554

5655

@@ -188,8 +187,7 @@ If you want to contribute, you should create development environment as follows:
188187
### Linux
189188

190189
```bash
191-
chmod +x scripts/install_dev_linux.sh
192-
./install_dev_linux.sh
190+
chmod +x scripts/install_dev_linux.sh && ./scripts/install_dev_linux.sh
193191
```
194192

195193

docs/Guide CPD Benchmark.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Go to repository folder and run installation script:
1818

1919
```bash
2020
cd pysatl-cpd
21-
chmod +x scripts/install_user_linux.sh
22-
./install_user_linux.sh
21+
chmod +x scripts/install_user_linux.sh && ./scripts/install_user_linux.sh
2322
```
2423

2524

@@ -39,17 +38,17 @@ Set-Location pysatl-cpd
3938

4039
### Available distributions
4140

42-
| Распределение | Название | Параметры |
43-
| ---------------------- | --------------------- | ----------------------------------------------------- |
44-
| Нормальное | `normal` | `mean`, `variance` |
45-
| Экспоненциальное | `exponential` | `rate` |
46-
| Вейбулла | `weibull` | `shape`, `scale` |
47-
| Равномерное | `uniform` | `min`, `max` |
48-
| Бета | `beta` | `alpha`, `beta` |
49-
| Гамма | `gamma` | `alpha`, `beta` |
50-
| t-Стьюдента | `t` | `n` |
51-
| Логнормальное | `lognorm` | `s` |
52-
| Многомерное нормальное | `multivariate_normal` | `mean`, в виде списка-строки, например `"[0.5, 2.0]"` |
41+
| Распределение | Название | Параметры |
42+
| ------------------- | --------------------- | ------------------------------------------------------- |
43+
| Normal | `normal` | `mean`, `variance` |
44+
| Exponential | `exponential` | `rate` |
45+
| Weibull | `weibull` | `shape`, `scale` |
46+
| Uniform | `uniform` | `min`, `max` |
47+
| Beta | `beta` | `alpha`, `beta` |
48+
| Gamma | `gamma` | `alpha`, `beta` |
49+
| t-Student | `t` | `n` |
50+
| Lognormal | `lognorm` | `s` |
51+
| Multivariate normal | `multivariate_normal` | `mean`, in the form of string of list, z `"[0.5, 2.0]"` |
5352

5453

5554

0 commit comments

Comments
 (0)