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
Copy file name to clipboardExpand all lines: common/src/main/java/net/caffeinemc/mods/sodium/client/render/chunk/compile/estimation/Average1DEstimator.java
Copy file name to clipboardExpand all lines: common/src/main/java/net/caffeinemc/mods/sodium/client/render/chunk/compile/estimation/Estimator.java
+30-30Lines changed: 30 additions & 30 deletions
Original file line number
Diff line number
Diff line change
@@ -5,46 +5,46 @@
5
5
/**
6
6
* This generic model learning class that can be used to estimate values based on a set of data points. It performs batch-wise model updates. The actual data aggregation and model updates are delegated to the implementing classes. The estimator stores multiple models in a map, one for each category.
7
7
*
8
-
* @param <C> The type of the category key
9
-
* @param <D> A data point contains a category and one piece of data
10
-
* @param <B> A data batch contains multiple data points
11
-
* @param <I> The input to the model
12
-
* @param <O> The output of the model
13
-
* @param <M> The model that is used to predict values
8
+
* @param <Category> The type of the category key
9
+
* @param <Point> A data point contains a category and one piece of data
10
+
* @param <Batch> A data batch contains multiple data points
11
+
* @param <Input> The input to the model
12
+
* @param <Output> The output of the model
13
+
* @param <Model> The model that is used to predict values
Copy file name to clipboardExpand all lines: common/src/main/java/net/caffeinemc/mods/sodium/client/render/chunk/compile/estimation/Linear2DEstimator.java
0 commit comments