Skip to content

Commit df94437

Browse files
committed
dev
1 parent 4d6f539 commit df94437

12 files changed

Lines changed: 167 additions & 232 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: julia-actions/setup-julia@v2
2121
with:
2222
version: '1.11'
23-
- uses: julia-actions/cache@v1
23+
- uses: julia-actions/cache@v2
2424
- name: Install dependencies
2525
run: julia --project=docs/ -e ' using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.add("DocumenterTools"); Pkg.instantiate()'
2626
- name: Build and deploy

Manifest.toml

Lines changed: 56 additions & 62 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PosDefManifoldML"
22
uuid = "a07f4532-e2c9-11e9-2ea2-6d98fe4a1f21"
33
authors = ["Marco-Congedo <marco.congedo@gmail.com>"]
4-
version = "0.5.11"
4+
version = "0.5.12"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ model=fit(ENLR(), PTr, yTr; alpha=0.5)
8484
cv = crval(ENLR(), PTr, yTr; alpha=0.5)
8585

8686
# (1)
87-
# create and fit (train) an SVM with Radial Basis kernel
87+
# create and fit (train) an SVM with linear (default) kernel
8888

8989
# finding the best model by cross-validation:
9090
model=fit(SVM(), PTr, yTr)

docs/Manifest.toml

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
authors = ["Marco Congedo, Fahim Doumi, Saloni Jain, Anton Andreev"]
2-
version = "0.5.11"
2+
version = "0.5.12"
33

44
[deps]
55
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ model=fit(ENLR(), PTr, yTr; alpha=0.5)
8585
cv = crval(ENLR(), PTr, yTr; alpha=0.5)
8686

8787
# (1)
88-
# create and fit (train) an SVM with Radial Basis kernel
88+
# create and fit (train) an SVM with linear (default) kernel
8989

9090
# finding the best model by cross-validation:
9191
model=fit(SVM(), PTr, yTr)

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,6 @@ deploydocs(
4141
# deps = Deps.pip("pygments", "mkdocs"),
4242
devbranch = "dev",
4343
devurl = "dev",
44+
push_preview = true,
4445
# versions = ["stable" => "v^", "v#.#", devurl => devurl],
4546
)

0 commit comments

Comments
 (0)