Skip to content

Commit dda235d

Browse files
authored
Merge pull request #27 from roberino/kohonen-feature-reduction
Kohonen feature reduction
2 parents df13256 + de33976 commit dda235d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+14179
-607
lines changed

.nuget/NuGet.exe

322 KB
Binary file not shown.

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// for the documentation about the tasks.json format
44
"tasks": [
55
{
6-
"command": "${workspaceRoot}/build-dotnet.sh",
6+
"command": "${workspaceRoot}/build/build-dotnet.sh",
77
"isShellCommand": true,
88
"echoCommand": true,
99
"taskName": "build",
@@ -13,7 +13,7 @@
1313
"showOutput": "always"
1414
},
1515
{
16-
"command": "${workspaceRoot}/test-dotnet.sh",
16+
"command": "${workspaceRoot}/build/test-dotnet.sh",
1717
"isShellCommand": true,
1818
"echoCommand": true,
1919
"taskName": "test",

LinqInfer-dotnetcore.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.13
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LinqInfer-dotnetcore", "src\LinqInfer\LinqInfer-dotnetcore.csproj", "{2BB72484-9321-4507-9BDB-C6D2CDCBD8FA}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LinqInfer.Tests-dotnetcore", "tests\LinqInfer.Tests\LinqInfer.Tests-dotnetcore.csproj", "{C715C7BE-2141-4FD2-9E24-5701431F2594}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{2BB72484-9321-4507-9BDB-C6D2CDCBD8FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{2BB72484-9321-4507-9BDB-C6D2CDCBD8FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{2BB72484-9321-4507-9BDB-C6D2CDCBD8FA}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{2BB72484-9321-4507-9BDB-C6D2CDCBD8FA}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{C715C7BE-2141-4FD2-9E24-5701431F2594}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{C715C7BE-2141-4FD2-9E24-5701431F2594}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{C715C7BE-2141-4FD2-9E24-5701431F2594}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{C715C7BE-2141-4FD2-9E24-5701431F2594}.Release|Any CPU.Build.0 = Release|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal

LinqInfer.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.13
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LinqInfer", "src\LinqInfer\LinqInfer.csproj", "{57818C8E-99BA-405E-A5C5-6DE2E54883EA}"
77
EndProject

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ for reducing the dimensionality of the input data, such as principle component a
2222
When data is extracted, it is represented as an enumeration of column vectors which
2323
can be transformed and filtered before being consumed for classifier training.
2424

25-
![SOFM graph](docs/sofm_graph2.png)
26-
2725
#### Learning
2826

2927
This is a collection of machine learning algorithms which are available through extention
@@ -73,6 +71,10 @@ Graphs can be exported into [GEXF](https://gephi.org/gexf/format/schema.html).
7371

7472
Check out [Sigmajs](http://sigmajs.org/) and [Gephi](https://gephi.org/) for visualising graphs.
7573

74+
![SOFM graph](docs/sofm_graph2.png)
75+
76+
![Neural network graph](docs/neural-network-sm.png)
77+
7678
#### Maths.Probability
7779

7880
This is a collection of functions and probability "objects" to help solve simple probability problems.

artifacts/.gitignore

Whitespace-only changes.

backlog.md

Lines changed: 0 additions & 25 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.

docs/neural-network-sm.png

218 KB
Loading

docs/neural-network.gexf

Lines changed: 9267 additions & 0 deletions
Large diffs are not rendered by default.

docs/neural-network.png

626 KB
Loading

0 commit comments

Comments
 (0)