Skip to content

Commit 5a5ec6e

Browse files
committed
Adapted to the inclusion of GradDescent
1 parent 15bb13e commit 5a5ec6e

20 files changed

+8
-143
lines changed

Manifest.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,6 @@ git-tree-sha1 = "481e4db939f005db39f7296599d0543c0744fe30"
7373
uuid = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
7474
version = "1.0.2"
7575

76-
[[GradDescent]]
77-
deps = ["LinearAlgebra"]
78-
git-tree-sha1 = "ca5103e33a602705c4196bf5bede1542a82f9dc2"
79-
repo-rev = "master"
80-
repo-url = "https://github.com/theogf/GradDescent.jl"
81-
uuid = "76767984-a792-11e8-2bb2-77d388f79a09"
82-
version = "0.1.0"
83-
8476
[[InteractiveUtils]]
8577
deps = ["LinearAlgebra", "Markdown"]
8678
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
99
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
1010
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
1111
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
12-
GradDescent = "76767984-a792-11e8-2bb2-77d388f79a09"
1312
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
1413
LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f"
1514
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

docs/src/index.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33

44
```@contents
5+
OMGP
56
```
67

7-
/* ## Install the package
8+
## Index
89

9-
```@docs
10-
train(model)
11-
``` */
10+
```@index
11+
Modules = [OMGP]
12+
```

src/OMGP.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,23 @@ include("kmeans/KMeansModule.jl")
3232
include("functions/PGSampler.jl")
3333
include("functions/PerturbativeCorrection.jl")
3434
include("functions/GPAnalysisTools.jl")
35+
include("functions/IO_model.jl")
36+
include("graddescent/GradDescent.jl")
3537
#Custom modules
3638
using .KernelModule
3739
using .KMeansModule
3840
using .PGSampler
3941
using .PerturbativeCorrection
4042
using .GPAnalysisTools
43+
using .GradDescent
4144
# using .IO_model
42-
include("functions/IO_model.jl")
4345
#General modules
4446
using Distributions
4547
using LinearAlgebra
4648
using StatsBase
4749
using SpecialFunctions
4850
using Dates
4951
using QuadGK
50-
using GradDescent
5152
using SparseArrays
5253
#Exported models
5354
export KMeansModule

0 commit comments

Comments
 (0)