Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit 2f26587

Browse files
committed
Merge remote-tracking branch 'origin/development' into master.
2 parents fa1d92b + 02d95ad commit 2f26587

File tree

1,240 files changed

+452515
-361017
lines changed

Some content is hidden

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

1,240 files changed

+452515
-361017
lines changed

.gitattributes

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
1-
# Set default behaviour, in case users don't have core.autocrlf set.
2-
* text=auto
3-
4-
# Explicitly declare text files we want to always be normalized and converted
5-
# to native line endings on checkout.
6-
# *.c text
7-
# *.h text
8-
9-
# Declare files that will always have CRLF line endings on checkout.
10-
*.sln eol=crlf
11-
*.bat eol=crlf
12-
*.svg eol=crlf
13-
*.csproj eol=crlf
14-
15-
# Denote all files that are truly binary and should not be modified.
16-
*.png binary
17-
*.jpg binary
1+
# Set default behaviour, in case users don't have core.autocrlf set.
2+
* binary
3+
4+
# Explicitly declare text files we want to always be normalized and converted
5+
# to native line endings on checkout.
6+
#*.c text
7+
#*.cpp text
8+
#*.h text
9+
10+
# Declare files that will always have CRLF line endings on checkout.
11+
#*.sln text eol=crlf
12+
#*.bat text eol=crlf
13+
#*.svg text eol=crlf
14+
#*.csproj text eol=crlf
15+
#*.cs text eol=crlf
16+
#*.tt text eol=crlf
17+
#*.xml text=auto
18+
19+
# Denote all files that are truly binary and should not be modified.
20+
#*.png binary
21+
#*.jpg binary
22+
#*.csv binary
23+
#*.xls binary
24+
#*.xlsx binary

Copyright.txt

+25
Original file line numberDiff line numberDiff line change
@@ -317,3 +317,28 @@ NLopt Numerical Optimization Library - Copyright (c) 2008-2014 Steven G. Johnson
317317
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
318318
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
319319
POSSIBILITY OF SUCH DAMAGE.
320+
321+
322+
LumenWorks.Framework.IO.CSV.CsvReader - A Fast CSV Reader
323+
324+
Copyright © Sebastien Lorion, 2005-2011
325+
All rights reserved.
326+
327+
MIT license (http://en.wikipedia.org/wiki/MIT_License)
328+
329+
Permission is hereby granted, free of charge, to any person obtaining a copy
330+
of this software and associated documentation files (the "Software"), to deal
331+
in the Software without restriction, including without limitation the rights
332+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
333+
of the Software, and to permit persons to whom the Software is furnished to do
334+
so, subject to the following conditions:
335+
336+
The above copyright notice and this permission notice shall be included in all
337+
copies or substantial portions of the Software.
338+
339+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
340+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
341+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
342+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
343+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
344+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.txt

+63-59
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,63 @@
1-
The Accord.NET Framework
2-
http://accord-framework.net
3-
4-
5-
The Accord.NET Framework provides machine learning, mathematics, statistics,
6-
computer vision, computer audition, and several scientific computing related
7-
methods and techniques to .NET. The project extends the popular AForge.NET
8-
Framework providing a more complete scientific computing environment.
9-
10-
The GitHub repository at https://github.com/accord-net/framework is the official
11-
home of the project after release 2.10 was finished. As such, new releases will
12-
only be made available on this repository.
13-
14-
15-
16-
Installing the framework
17-
------------------------
18-
19-
0) Download the framework through NuGet:
20-
21-
https://www.nuget.org/packages?q=accord.net
22-
23-
or, alternatively, perform a manual install by following
24-
the steps described below.
25-
26-
1) Download the AForge.NET Framework 2.2.5 from
27-
https://code.google.com/p/aforge/downloads/list
28-
29-
2) Download the Accord.NET Framework from
30-
https://github.com/accord-net/framework/releases
31-
32-
3) Install both frameworks as described in the Getting Started Guide
33-
http://accord-framework.net/get-started.html
34-
35-
36-
4) If you used the automated installers, the framework binaries
37-
should already be available in the Add Reference dialog from
38-
Visual Studio. If you installed using the zip packages, you'll
39-
need to add references manually to your projects.
40-
41-
5) Upon installation, several sample applications will be available
42-
by default at
43-
44-
C:\Program Files (x86)\Accord.NET\Framework\Samples
45-
46-
You can open the Samples.sln solution on Visual Studio to check
47-
the sample applications for examples. Complete documentation is
48-
also available online at
49-
50-
http://accord-framework.net/docs/Index.html
51-
52-
53-
54-
Obtaining support and documentation
55-
-----------------------------------
56-
57-
1) Check the reference manual at: http://accord-framework.net/docs/Index.html
58-
2) Visit the discussion group at: https://groups.google.com/forum/#!forum/accord-net
59-
1+
The Accord.NET Framework
2+
http://accord-framework.net
3+
4+
5+
The Accord.NET Framework provides machine learning, mathematics, statistics,
6+
computer vision, computer audition, and several scientific computing related
7+
methods and techniques to .NET. The project extends the popular AForge.NET
8+
Framework providing a more complete scientific computing environment.
9+
10+
The GitHub repository at https://github.com/accord-net/framework is the official
11+
home of the project after release 2.10 was finished. As such, new releases will
12+
only be made available on this repository.
13+
14+
15+
16+
Installing the framework
17+
------------------------
18+
19+
1) Download the framework through NuGet:
20+
https://www.nuget.org/packages?q=accord.net
21+
22+
23+
2) Follow the Getting Started Guide
24+
http://accord-framework.net/get-started.html
25+
26+
27+
3) Check the sample applications and find one that is related to what you need.
28+
http://accord-framework.net/samples.html
29+
30+
If you have installed the framework using the installer, the samples will be at
31+
32+
C:\Program Files (x86)\Accord.NET\Framework\Samples
33+
34+
You can open the Samples.sln solution on Visual Studio and check the sample
35+
applications for examples. Complete documentation is also available online at
36+
37+
http://accord-framework.net/docs/Index.html
38+
39+
40+
41+
Building with Visual Studio
42+
---------------------------
43+
44+
1) Clone the repository (SmartGit is the best Git tool available for Windows)
45+
2) Open Sources/Accord.NET.sln in Visual Studio (works with Express versions)
46+
47+
48+
49+
Building in Linux with Mono
50+
---------------------------
51+
52+
# Install Mono
53+
sudo apt-get install mono-complete monodevelop monodevelop-nunit
54+
55+
# Clone the repository
56+
git clone https://github.com/accord-net/framework.git
57+
58+
# Enter the directory
59+
cd framework
60+
61+
# Build the framework solution using Mono
62+
mdtool build -c:"NET40" Sources/Accord.NET.Mono.sln
63+

0 commit comments

Comments
 (0)