-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added mode(vector of categorical values), generalized other mode and …
…removed @turbo in DenseLayer - Generalized mode and allowed to work on stuff like mode (["a","b","a"]) - Removed @turbo that was creating some strange errors in using NeuralNeworkEstimator as inputer - Added test for NeuralNetworkEstimator as inputer
- Loading branch information
1 parent
68e29bf
commit 55c1958
Showing
6 changed files
with
36 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "BetaML" | ||
uuid = "024491cd-cc6b-443e-8034-08ea7eb7db2b" | ||
authors = ["Antonello Lobianco <[email protected]>"] | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
|
||
[deps] | ||
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
using Test | ||
using BetaML | ||
|
||
#using Pkg # seems Julia bug: can't find pkg `Pkg` !! | ||
#Pkg.activate(@__DIR__) | ||
|