You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's first of all set up our distributed environement.
37
+
Let's first of all set up our distributed environment.
38
38
39
39
```julia
40
40
# Launch multiple processes (or remote machines)
@@ -76,7 +76,7 @@ Now to the implementation.
76
76
end
77
77
```
78
78
79
-
Let's test our algorithm on a linear regression problem with mean squared error loss (LRMSE). This problem must be **compatible with your algorithm**. In this example, it means providing attributes `n` and `m` (dimension of the regressor and number of points), and the method `∇f(x::Vector{Float64}, i::Int64)` (gradient of the linear regression loss on the ith data point)
79
+
Now let's test our algorithm on a linear regression problem with mean squared error loss (LRMSE). This problem must be **compatible with your algorithm**. In this example, it means providing attributes `n` and `m` (dimension of the regressor and number of points), and the method `∇f(x::Vector{Float64}, i::Int64)` (gradient of the linear regression loss on the ith data point)
80
80
81
81
```julia
82
82
@everywherebegin
@@ -103,7 +103,7 @@ We're almost ready to start the algorithm...
0 commit comments