Skip to content

Commit c876bfc

Browse files
committed
Merge branch 'master' into 3.0
2 parents baa8bac + 082fed2 commit c876bfc

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ composer require rubix/ml
3030
- [GraphViz](https://graphviz.org/) for graph visualization
3131

3232
## Documentation
33-
Read the latest docs [here](https://docs.rubixml.com).
33+
Read the latest docs [here](https://rubixml.github.io/ML/latest/).
3434

3535
## What is Rubix ML?
3636
Rubix ML is a free open-source machine learning (ML) library that allows you to build programs that learn from your data using the PHP language. We provide tools for the entire machine learning life cycle from ETL to training, cross-validation, and production with over 40 supervised and unsupervised learning algorithms. In addition, we provide tutorials and other educational content to help you get started using ML in your projects.
3737

3838
## Getting Started
39-
If you are new to machine learning, we recommend taking a look at the [What is Machine Learning?](https://docs.rubixml.com/latest/what-is-machine-learning.html) section to get started. If you are already familiar with basic ML concepts, you can browse the [basic introduction](https://docs.rubixml.com/latest/basic-introduction.html) for a brief look at a typical Rubix ML project. From there, you can browse the official tutorials below which range from beginner to advanced skill level.
39+
If you are new to machine learning, we recommend taking a look at the [What is Machine Learning?](https://rubixml.github.io/ML/latest/what-is-machine-learning.html) section to get started. If you are already familiar with basic ML concepts, you can browse the [basic introduction](https://rubixml.github.io/ML/latest/basic-introduction.html) for a brief look at a typical Rubix ML project. From there, you can browse the official tutorials below which range from beginner to advanced skill level.
4040

4141
### Tutorials & Example Projects
4242
Check out these example projects using the Rubix ML library. Many come with instructions and a pre-cleaned dataset.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "rubix/ml",
33
"type": "library",
44
"description": "A high-level machine learning and deep learning library for the PHP language.",
5-
"homepage": "https://rubixml.com",
5+
"homepage": "https://rubixml.github.io/ML/latest/",
66
"license": "MIT",
77
"readme": "README.md",
88
"keywords": [
@@ -106,7 +106,7 @@
106106
}
107107
],
108108
"support": {
109-
"docs": "https://docs.rubixml.com",
109+
"docs": "https://rubixml.github.io/ML/latest/",
110110
"issues": "https://github.com/RubixML/ML/issues",
111111
"source": "https://github.com/RubixML/ML",
112112
"chat": "https://t.me/RubixML"

docs/clusterers/mean-shift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use Rubix\ML\Clusterers\MeanShift;
2323
use Rubix\ML\Graph\Trees\BallTree;
2424
use Rubix\ML\Clusterers\Seeders\KMC2;
2525

26-
$estimator = new MeanShift(2.5, 2000, 1e-6, 0.05, new BallTree(100), new KMC2());
26+
$estimator = new MeanShift(2.5, 0.05, 2000, 1e-6, new BallTree(100), new KMC2());
2727
```
2828

2929
## Additional Methods

docs/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Training time depends on a number of factors including size of the dataset and c
3939
- You have enough RAM to hold the dataset and model in memory without swapping to disk.
4040

4141
## Does Rubix ML support multiprocessing/multithreading?
42-
Yes, learners that support parallel processing (multiprocessing or multithreading) do so by utilizing a pluggable parallel computing backend such as [Amp](https://docs.rubixml.com/latest/backends/amp.html) or extension such as [Tensor](https://github.com/RubixML/Tensor) under the hood.
42+
Yes, learners that support parallel processing (multiprocessing or multithreading) do so by utilizing a pluggable parallel computing backend such as [Amp](https://rubixml.github.io/ML/latest/backends/amp.html) or extension such as [Tensor](https://github.com/RubixML/Tensor) under the hood.
4343

4444
## Does Rubix ML support Deep Learning?
4545
Yes, a number of learners in the library support Deep Learning including the [Multilayer Perceptron](classifiers/multilayer-perceptron.md) classifier and [MLP Regressor](regressors/mlp-regressor.md).

mkdocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ theme:
1010
- navigation.tabs
1111

1212
nav:
13-
- Home: https://rubixml.com
13+
- Home: https://rubixml.github.io/ML
1414
- Getting Started:
1515
- Welcome: index.md
1616
- What is Machine Learning?: what-is-machine-learning.md
@@ -329,7 +329,7 @@ extra_css:
329329
- css/custom.css
330330

331331
repo_url: https://github.com/RubixML/ML
332-
site_url: https://rubixml.com
332+
site_url: https://rubixml.github.io/ML
333333
site_description: 'A high-level machine learning and deep learning library for the PHP language.'
334334

335335
copyright: '© 2022 The Rubix ML Community'

0 commit comments

Comments
 (0)