Skip to content

Commit 616d253

Browse files
authored
Merge pull request #99 from bensadeghi/devel
added Project.toml
2 parents 640babd + e296599 commit 616d253

File tree

5 files changed

+117
-7
lines changed

5 files changed

+117
-7
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
*.csv
22
styleguide.txt
33
makefile
4-
.DS_Store
4+
.DS_Store

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,5 @@ notifications:
1717

1818
sudo: false
1919

20-
script:
21-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
22-
- julia -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("DecisionTree"); Pkg.test("DecisionTree"; coverage=true)'
23-
2420
after_success:
25-
- julia -e 'import Pkg; cd(Pkg.dir("DecisionTree")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
21+
- julia -e 'if VERSION >= v"0.7.0-" using Pkg end; cd(Pkg.dir("DecisionTree")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

Manifest.toml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
[[Base64]]
4+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
5+
6+
[[Compat]]
7+
deps = ["Base64", "Dates", "DelimitedFiles", "Distributed", "InteractiveUtils", "LibGit2", "Libdl", "LinearAlgebra", "Markdown", "Mmap", "Pkg", "Printf", "REPL", "Random", "Serialization", "SharedArrays", "Sockets", "SparseArrays", "Statistics", "Test", "UUIDs", "Unicode"]
8+
git-tree-sha1 = "84aa74986c5b9b898b0d1acaf3258741ee64754f"
9+
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
10+
version = "2.1.0"
11+
12+
[[Dates]]
13+
deps = ["Printf"]
14+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
15+
16+
[[DelimitedFiles]]
17+
deps = ["Mmap"]
18+
uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab"
19+
20+
[[Distributed]]
21+
deps = ["Random", "Serialization", "Sockets"]
22+
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
23+
24+
[[InteractiveUtils]]
25+
deps = ["Markdown"]
26+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
27+
28+
[[LibGit2]]
29+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
30+
31+
[[Libdl]]
32+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
33+
34+
[[LinearAlgebra]]
35+
deps = ["Libdl"]
36+
uuid = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
37+
38+
[[Logging]]
39+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
40+
41+
[[Markdown]]
42+
deps = ["Base64"]
43+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
44+
45+
[[Mmap]]
46+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
47+
48+
[[Pkg]]
49+
deps = ["Dates", "LibGit2", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
50+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
51+
52+
[[Printf]]
53+
deps = ["Unicode"]
54+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
55+
56+
[[REPL]]
57+
deps = ["InteractiveUtils", "Markdown", "Sockets"]
58+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
59+
60+
[[Random]]
61+
deps = ["Serialization"]
62+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
63+
64+
[[SHA]]
65+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
66+
67+
[[ScikitLearnBase]]
68+
deps = ["Compat", "LinearAlgebra", "Random", "Statistics", "Test"]
69+
git-tree-sha1 = "0e27caac9a456b531193117c538d739d2d6e91c2"
70+
uuid = "6e75b9c4-186b-50bd-896f-2d2496a4843e"
71+
version = "0.4.1"
72+
73+
[[Serialization]]
74+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
75+
76+
[[SharedArrays]]
77+
deps = ["Distributed", "Mmap", "Random", "Serialization"]
78+
uuid = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
79+
80+
[[Sockets]]
81+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
82+
83+
[[SparseArrays]]
84+
deps = ["LinearAlgebra", "Random"]
85+
uuid = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
86+
87+
[[Statistics]]
88+
deps = ["LinearAlgebra", "SparseArrays"]
89+
uuid = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
90+
91+
[[Test]]
92+
deps = ["Distributed", "InteractiveUtils", "Logging", "Random"]
93+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
94+
95+
[[UUIDs]]
96+
deps = ["Random", "SHA"]
97+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
98+
99+
[[Unicode]]
100+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

Project.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name = "DecisionTree"
2+
uuid = "7806a523-6efd-50cb-b5f6-3fa6f1930dbb"
3+
license = "MIT"
4+
desc = "Julia implementation of Decision Tree (CART) and Random Forest algorithms"
5+
version = "0.8.3"
6+
7+
[deps]
8+
ScikitLearnBase = "6e75b9c4-186b-50bd-896f-2d2496a4843e"
9+
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
10+
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
11+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
12+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
14+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ r2 = nfoldCV_forest(labels, features,
254254
```
255255

256256
## Saving Models
257-
Models can be saved to disk and loaded back with the use of the [JLD2.jl](https://github.com/simonster/JLD2.jl) package.
257+
Models can be saved to disk and loaded back with the use of the [JLD2.jl](https://github.com/JuliaIO/JLD2.jl) package.
258258
```julia
259259
using JLD2
260260
@save "model_file.jld2" model

0 commit comments

Comments
 (0)