-
Notifications
You must be signed in to change notification settings - Fork 29
/
license.html
147 lines (143 loc) · 8.04 KB
/
license.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
layout: default
title: "License"
comments: true
---
<div id="license" class="fixed">
<h1>
The framework is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">
GNU Lesser Public License v2.1
</a>
</h1>
<p>
What does that means?
</p>
<small>
Note: I am not a lawyer, and the following should not be seen, by any means,
as any kind of legal advice. They do not substitute the license text, and the only
valid legal terms are the ones specified in the contents of the GNU Lesser General
Public License text file. If in doubt, consult a lawyer.
</small>
<h2>
Can I use Accord.NET in my commercial applications?
</h2>
<p>
<strong>Yes</strong>, as long as you are only linking against the unmodified .dll files
of the framework, and if you mention in your software and relevant resource materials
that you are using this framework - and ideally tell users where they could also find it.
</p>
<h2>
Will I need to disclose my source code if I link against this library?
</h2>
<p>
<strong>No</strong>, as long as you don't touch any of the framework's own source
code files. If you just link against the framework .dll files, then everything should
be fine. Note that this is the most common case (and the intended use) scenario.
<br><br>
However, if you make modifications to the framework <i>source code</i>, and redistribute
this modified version (i.e. compile a modified version of <i>the framework itself</i>),
then you will need to distribute those modifications under the LGPL, to whomever
you chose to distribute this modified version to.
</p>
<h2>
So if I alter any of the framework's source code files and link against this modified
version, will I have to disclose my application code?
</h2>
<p>
<strong>No</strong>. Your application would be fine. The problem would be the modified
version of the framework: if you would like to continue using the framework, you
can open just the modifications you made to the framework's source code, and not
the code of your consumer application. <b>The code of your application would never
need to be disclosed, under any circumstances</b>.
<br><br>
Neither the GPL nor the LGPL actually obliges you to actually disclose
your source code. If you distribute a modified version without abiding by the LGPL terms, you
will be violating the license terms and thus lose your grant to continue using the library.
You will have two options: either continue using the library and disclose your modifications
under the LGPL, or stop distributing the modified software altogether.
</p>
<h1>
Licensing FAQ
</h1>
<h2>
Why some assemblies/projects are marked as .Noncommercial in their names?
</h2>
<p>
Some assemblies, such as <a href="https://www.nuget.org/packages/Accord.Math.Noncommercial/">
Accord.Math.Noncommercial</a> are marked as Noncommercial because they include algorithms
that have been shared under academic-only licenses, or that otherwise contain patented
algorithms for which would be necessary to acquire a license to commercialize. If you would
are using the framework and plan to commercialize your product, please avoid linking your
project against those specific assemblies (note:
the assembly shown as an example is different from the standard <a href="https://www.nuget.org/packages/Accord.Math/">Accord.Math</a>
assembly, which is perfectly OK to use in commercial applications).
</p>
<h2>
Can I use the framework for commercial purposes and without paying money to your company?
</h2>
<p>
Yes, as long as you don't use any of the assemblies marked as "Noncommercial", such as, for example,
<a href="https://www.nuget.org/packages/Accord.Math.Noncommercial/">Accord.Math.Noncommercial</a> (note:
this is different from the standard <a href="https://www.nuget.org/packages/Accord.Math/">Accord.Math</a>
assembly, which is perfectly OK to use in commercial applications).
</p>
<h2>
If I do not change your work, but only use the compiled DLLs in my project, can I keep my source code
proprietary (i.e. without having to make my source code public/visible)?
</h2>
<p>
Yes, you can always keep your source proprietary. By the way, you could keep your source code proprietary
even if you modified the framework source code. You would have the option of disclosing the source code of
your <i>modifications to the framework's source code</i>, but never of your application or product.
</p>
<h2>
Can I deploy the DLLs on the computer of my customers?
</h2>
<p>
Absolutely! Just be sure to mention in your application and related documentation materials that your
product uses this framework and indicate where users can download it.
</p>
<h2>
Do I have to acquire a license to use the framework?
</h2>
<p>
No, you don't need to acquire a license to use Accord.NET in a commercial application. The framework is
distributed under the LGPL 2 license, which allows it to be used commercially without any costs. However, sometimes
people ask framework authors to give special, explicit licenses with my signature, just for extra garanties that
they can indeed use the framework in their products. This is not required at all, but I guess some companies have
some restrictions against open-source code and I suppose having those explicit permissions is safer for them.
</p>
<h2>
We're interested in using Accord for a commercial piece of software, however some parts of Accord appear to be GPL,
whereas others are LGPL, and some are under Creative Commons. Why is that?
</h2>
<p>
All the binaries from the framework are available under the LGPL license <i>except</i> for the ones that have different
license markings in their names. For example, <a href="https://www.nuget.org/packages/Accord.MachineLearning/">
Accord.MachineLearning.dll</a> does not have any marking, and as such,
is under the LGPL. In fact, all "core" assemblies of the framework are available under the LGPL and thus can be
used on commercial and closed-source applications without any problems.
<br><br>
However, there have been some useful algorithms that have been released by others under the GPL or non-commercial
licenses. In order to keep the main framework under the LGPL but still provide those algorithms for those who need,
the framework contains assemblies with the marks "GPL" or "Noncommercial" in their names such as
<a href="https://www.nuget.org/packages/Accord.MachineLearning.GPL/">Accord.MachineLearning.GPL.dll</a>. Those
especially marked assemblies are available under their respective marked licenses. If you want to keep the
licensing clean, just stick to using the standard binaries which are not marked with GPL or Noncommercial in
their names.
<br><br>
Regarding the mention to Creative Commons: it refers only to the documentation and API reference that comes with
the framework, and its the same license used by Wikipedia. It is a more adequate license for texts.
</p>
<h1>
Additional software
</h1>
<p>
Great part of the open-source software ecosystem is based in the sharing and reuse
of source code. As such, the framework also makes use of several excelent works
shared by other users under LGPL-compatible licenses. For a complete list of such
software, please consult the <a href="https://github.com/accord-net/framework/blob/master/Copyright.txt">
Copyrights.txt text file
</a> in the framework's main folder.
</p>
</div>