Skip to content

Commit 9d583b6

Browse files
justinormontTomFinley
authored andcommitted
Move HTTP links to HTTPS (when the content matches)
1 parent a901048 commit 9d583b6

File tree

44 files changed

+91
-91
lines changed

Some content is hidden

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

44 files changed

+91
-91
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ We welcome contributions! Please review our [contribution guide](CONTRIBUTING.md
5656

5757
Please join our community on Gitter [![Join the chat at https://gitter.im/dotnet/mlnet](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/dotnet/mlnet?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
5858

59-
This project has adopted the code of conduct defined by the [Contributor Covenant](http://contributor-covenant.org/) to clarify expected behavior in our community.
59+
This project has adopted the code of conduct defined by the [Contributor Covenant](https://contributor-covenant.org/) to clarify expected behavior in our community.
6060
For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
6161

6262
## Examples
@@ -94,7 +94,7 @@ ML.NET is licensed under the [MIT license](LICENSE).
9494

9595
## .NET Foundation
9696

97-
ML.NET is a [.NET Foundation](http://www.dotnetfoundation.org/projects) project.
97+
ML.NET is a [.NET Foundation](https://www.dotnetfoundation.org/projects) project.
9898

9999
There are many .NET related projects on GitHub.
100100

build.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
DestinationFile="$(MSBuildThisFileDirectory)test/data/external/winequality-white.csv" />
8282

8383
<TestFile Condition="'$(IncludeBenchmarkData)' == 'true'" Include="$(MSBuildThisFileDirectory)/test/data/external/WikiDetoxAnnotated160kRows.tsv"
84-
Url="http://aka.ms/tlc-resources/benchmarks/WikiDetoxAnnotated160kRows.tsv"
84+
Url="https://aka.ms/tlc-resources/benchmarks/WikiDetoxAnnotated160kRows.tsv"
8585
DestinationFile="$(MSBuildThisFileDirectory)test/data/external/WikiDetoxAnnotated160kRows.tsv" />
8686
</ItemGroup>
8787

docs/building/unix-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ On macOS a few components are needed which are not provided by a default develop
4545
* gcc
4646
* All the requirements necessary to run .NET Core 2.0 applications. To view macOS prerequisites click [here](https://docs.microsoft.com/en-us/dotnet/core/macos-prerequisites?tabs=netcore2x).
4747

48-
One way of obtaining CMake and gcc is via [Homebrew](http://brew.sh):
48+
One way of obtaining CMake and gcc is via [Homebrew](https://brew.sh):
4949
```sh
5050
$ brew install cmake
5151
$ brew install gcc

docs/code/IdvFileFormat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ The enum for compression kind is one byte, and follows this scheme:
116116
Compression Kind | Code
117117
---------------------------------------------------------------|-----
118118
None | 0
119-
DEFLATE (i.e., [RFC1951](http://www.ietf.org/rfc/rfc1951.txt)) | 1
120-
zlib (i.e., [RFC1950](http://www.ietf.org/rfc/rfc1950.txt)) | 2
119+
DEFLATE (i.e., [RFC1951](https://www.ietf.org/rfc/rfc1951.txt)) | 1
120+
zlib (i.e., [RFC1950](https://www.ietf.org/rfc/rfc1950.txt)) | 2
121121

122122
None means no compression. DEFLATE is the default scheme. There is a tendency
123123
to conflate zlib and DEFLATE, so to be clear: zlib can be (somewhat inexactly)

docs/release-notes/0.2/release-0.2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Below are some of the highlights from this release.
3939
their taste in movies.
4040

4141
* ML.NET 0.2 exposes `KMeansPlusPlusClusterer` which implements [K-Means++
42-
clustering](http://theory.stanford.edu/~sergei/papers/vldb12-kmpar.pdf)
42+
clustering](https://theory.stanford.edu/~sergei/papers/vldb12-kmpar.pdf)
4343
with [Yinyang K-means
4444
acceleration](https://www.microsoft.com/en-us/research/publication/yinyang-k-means-a-drop-in-replacement-of-the-classic-k-means-with-consistent-speedup/?from=http%3A%2F%2Fresearch.microsoft.com%2Fapps%2Fpubs%2Fdefault.aspx%3Fid%3D252149).
4545
[This

docs/release-notes/0.3/release-0.3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ Below are some of the highlights from this release.
3939
* FFM is a streaming learner so it does not require the entire dataset to
4040
fit in memory.
4141
* You can learn more about FFM
42-
[here](http://www.csie.ntu.edu.tw/~cjlin/papers/ffm.pdf) and some of the
42+
[here](https://www.csie.ntu.edu.tw/~cjlin/papers/ffm.pdf) and some of the
4343
speedup approaches that are used in ML.NET
4444
[here](https://github.com/wschin/fast-ffm/blob/master/fast-ffm.pdf).
4545

4646
* Added [LightGBM](https://github.com/Microsoft/LightGBM) as a learner for
4747
binary classification, multiclass classification, and regression (#392)
4848

4949
* LightGBM is a tree based gradient boosting machine. It is under the
50-
umbrella of the [DMTK](http://github.com/microsoft/dmtk) project at
50+
umbrella of the [DMTK](https://github.com/microsoft/dmtk) project at
5151
Microsoft.
5252
* The LightGBM repository shows various [comparison
5353
experiments](https://github.com/Microsoft/LightGBM/blob/6488f319f243f7ff679a8e388a33e758c5802303/docs/Experiments.rst#comparison-experiment)

docs/release-notes/0.4/release-0.4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Below are some of the highlights from this release.
6464
* Several options for pretrained embeddings are available:
6565
[GloVe](https://nlp.stanford.edu/projects/glove/),
6666
[fastText](https://en.wikipedia.org/wiki/FastText), and
67-
[SSWE](http://anthology.aclweb.org/P/P14/P14-1146.pdf). The pretrained model is downloaded automatically on first use.
67+
[SSWE](https://anthology.aclweb.org/P/P14/P14-1146.pdf). The pretrained model is downloaded automatically on first use.
6868
* Documentation can be found
6969
[here](https://docs.microsoft.com/en-us/dotnet/api/microsoft.ml.transforms.wordembeddings?view=ml-dotnet).
7070

@@ -85,4 +85,4 @@ Shoutout to [dsyme](https://github.com/dsyme),
8585
[jwood803](https://github.com/jwood803),
8686
[sharwell](https://github.com/sharwell),
8787
[JoshuaLight](https://github.com/JoshuaLight), and the ML.NET team for their
88-
contributions as part of this release!
88+
contributions as part of this release!

src/Microsoft.ML.Core/Utilities/DoubleParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ public static bool TryParse(out Double value, string s, int ichMin, int ichLim,
345345
// Taking the high 64 bits of the 128 bit result should give us enough bits to get the
346346
// right answer most of the time. Note, that it's not guaranteed that we always get the
347347
// right answer. Guaranteeing that takes much more work.... See the paper by David Gay at
348-
// http://www.ampl.com/REFS/rounding.pdf.
348+
// https://www.ampl.com/REFS/rounding.pdf.
349349
Contracts.Assert((num & TopTwoBits) != 0);
350350
Contracts.Assert((mul & TopBit) != 0);
351351

src/Microsoft.ML.Core/Utilities/ReservoirSampler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public interface IReservoirSampler<T>
4747
/// This class produces a sample without replacement from a stream of data of type <typeparamref name="T"/>.
4848
/// It is instantiated with a delegate that gets the next data point, and builds a reservoir in one pass by calling <see cref="Sample"/>
4949
/// for every data point in the stream. In case the next data point does not get 'picked' into the reservoir, the delegate is not invoked.
50-
/// Sampling is done according to the algorithm in this paper: <a href="http://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53">http://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53</a>.
50+
/// Sampling is done according to the algorithm in this paper: <a href="https://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53">https://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53</a>.
5151
/// </summary>
5252
public sealed class ReservoirSamplerWithoutReplacement<T> : IReservoirSampler<T>
5353
{
@@ -120,7 +120,7 @@ public IEnumerable<T> GetSample()
120120
/// This class produces a sample with replacement from a stream of data of type <typeparamref name="T"/>.
121121
/// It is instantiated with a delegate that gets the next data point, and builds a reservoir in one pass by calling <see cref="Sample"/>
122122
/// for every data point in the stream. In case the next data point does not get 'picked' into the reservoir, the delegate is not invoked.
123-
/// Sampling is done according to the algorithm in this paper: <a href="http://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53">http://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53</a>.
123+
/// Sampling is done according to the algorithm in this paper: <a href="https://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53">https://epubs.siam.org/doi/pdf/10.1137/1.9781611972740.53</a>.
124124
/// </summary>
125125
public sealed class ReservoirSamplerWithReplacement<T> : IReservoirSampler<T>
126126
{

src/Microsoft.ML.Core/Utilities/Stats.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public static int SampleFromPoisson(IRandom rand, double lambda)
199199
}
200200

201201
// Mean refers to the mu parameter. Scale refers to the b parameter.
202-
// http://en.wikipedia.org/wiki/Laplace_distribution
202+
// https://en.wikipedia.org/wiki/Laplace_distribution
203203
public static Float SampleFromLaplacian(IRandom rand, Float mean, Float scale)
204204
{
205205
Float u = rand.NextSingle();
@@ -215,7 +215,7 @@ public static Float SampleFromLaplacian(IRandom rand, Float mean, Float scale)
215215

216216
/// <summary>
217217
/// Sample from a standard Cauchy distribution:
218-
/// http://en.wikipedia.org/wiki/Lorentzian_function
218+
/// https://en.wikipedia.org/wiki/Lorentzian_function
219219
/// </summary>
220220
/// <param name="rand"></param>
221221
/// <returns></returns>

0 commit comments

Comments
 (0)