Skip to content

Commit 69049c5

Browse files
authored
Move generic function stubs to HealthMLBase (#13)
1 parent 738d14b commit 69049c5

File tree

2 files changed

+4
-61
lines changed

2 files changed

+4
-61
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,7 @@
77

88
HealthBase provides a common namespace for packages in the JuliaHealth organization.
99

10-
The package is very lightweight. It has no dependencies of any kind. It contains only generic function stubs and type definitions.
10+
The package is very lightweight. It has no dependencies. It does not contain any code. It only contains:
11+
* Generic function stubs
12+
* Type definitions
13+
* Trait definitions

src/HealthBase.jl

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,3 @@
11
module HealthBase
22

3-
"""
4-
fit
5-
"""
6-
function fit end
7-
8-
"""
9-
fit!
10-
"""
11-
function fit! end
12-
13-
"""
14-
inverse_transform
15-
"""
16-
function inverse_transform end
17-
18-
"""
19-
inverse_transform!
20-
"""
21-
function inverse_transform! end
22-
23-
"""
24-
predict
25-
"""
26-
function predict end
27-
28-
"""
29-
predict!
30-
"""
31-
function predict! end
32-
33-
"""
34-
predict_proba
35-
"""
36-
function predict_proba end
37-
38-
"""
39-
predict_proba!
40-
"""
41-
function predict_proba! end
42-
43-
"""
44-
predict_log_proba
45-
"""
46-
function predict_log_proba end
47-
48-
"""
49-
predict_log_proba!
50-
"""
51-
function predict_log_proba! end
52-
53-
"""
54-
transform
55-
"""
56-
function transform end
57-
58-
"""
59-
transform!
60-
"""
61-
function transform! end
62-
633
end # module

0 commit comments

Comments
 (0)