Skip to content

Commit 7388a4a

Browse files
committed
put parameter in the correct place
1 parent 8b55f4a commit 7388a4a

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

src/main/java/ai/nets/samj/communication/model/EfficientViTSAML1.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ public class EfficientViTSAML1 extends SAMModel {
5454

5555
/**
5656
* Create an instance of the model that loads the model and encodes an image
57-
* @param manager
58-
* the model manager that contains the info about where the model
59-
* environment and model weights are installed
6057
*/
6158
public EfficientViTSAML1() {
6259
this.isHeavy = false;
@@ -73,6 +70,9 @@ public EfficientViTSAML1() {
7370

7471
/**
7572
* Create an instance of the model that loads the model and encodes an image
73+
* @param manager
74+
* the model manager that contains the info about where the model
75+
* environment and model weights are installed
7676
*/
7777
public EfficientViTSAML1(EfficientViTSamEnvManager manager) {
7878
this.isHeavy = false;

src/main/java/ai/nets/samj/communication/model/EfficientViTSAML2.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ public class EfficientViTSAML2 extends SAMModel {
5454

5555
/**
5656
* Create an instance of the model that loads the model and encodes an image
57-
* @param manager
58-
* the model manager that contains the info about where the model
59-
* environment and model weights are installed
6057
*/
6158
public EfficientViTSAML2() {
6259
this.isHeavy = false;
@@ -73,6 +70,9 @@ public EfficientViTSAML2() {
7370

7471
/**
7572
* Create an instance of the model that loads the model and encodes an image
73+
* @param manager
74+
* the model manager that contains the info about where the model
75+
* environment and model weights are installed
7676
*/
7777
public EfficientViTSAML2(EfficientViTSamEnvManager manager) {
7878
this.isHeavy = false;

src/main/java/ai/nets/samj/communication/model/EfficientViTSAMXL0.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ public class EfficientViTSAMXL0 extends SAMModel {
5353

5454
/**
5555
* Create an instance of the model that loads the model and encodes an image
56-
* @param manager
57-
* the model manager that contains the info about where the model
58-
* environment and model weights are installed
5956
*/
6057
public EfficientViTSAMXL0() {
6158
this.isHeavy = false;
@@ -72,6 +69,9 @@ public EfficientViTSAMXL0() {
7269

7370
/**
7471
* Create an instance of the model that loads the model and encodes an image
72+
* @param manager
73+
* the model manager that contains the info about where the model
74+
* environment and model weights are installed
7575
*/
7676
public EfficientViTSAMXL0(EfficientViTSamEnvManager manager) {
7777
this.isHeavy = false;

src/main/java/ai/nets/samj/communication/model/EfficientViTSAMXL1.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ public class EfficientViTSAMXL1 extends SAMModel {
5555

5656
/**
5757
* Create an instance of the model that loads the model and encodes an image
58-
* @param manager
59-
* the model manager that contains the info about where the model
60-
* environment and model weights are installed
6158
*/
6259
public EfficientViTSAMXL1() {
6360
this.isHeavy = false;
@@ -74,6 +71,9 @@ public EfficientViTSAMXL1() {
7471

7572
/**
7673
* Create an instance of the model that loads the model and encodes an image
74+
* @param manager
75+
* the model manager that contains the info about where the model
76+
* environment and model weights are installed
7777
*/
7878
public EfficientViTSAMXL1(EfficientViTSamEnvManager manager) {
7979
this.isHeavy = false;

src/main/java/ai/nets/samj/communication/model/SAM2Large.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ public class SAM2Large extends SAMModel {
5555

5656
/**
5757
* Create an instance of the model that loads the model and encodes an image
58-
* @param manager
59-
* the model manager that contains the info about where the model
60-
* environment and model weights are installed
6158
*/
6259
public SAM2Large() {
6360
this.isHeavy = true;
@@ -76,6 +73,9 @@ public SAM2Large() {
7673

7774
/**
7875
* Create an instance of the model that loads the model and encodes an image
76+
* @param manager
77+
* the model manager that contains the info about where the model
78+
* environment and model weights are installed
7979
*/
8080
public SAM2Large(Sam2EnvManager manager) {
8181
this.isHeavy = true;

src/main/java/ai/nets/samj/communication/model/SAM2Small.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ public class SAM2Small extends SAMModel {
5454

5555
/**
5656
* Create an instance of the model that loads the model and encodes an image
57-
* @param manager
58-
* the model manager that contains the info about where the model
59-
* environment and model weights are installed
6057
*/
6158
public SAM2Small() {
6259
this.isHeavy = true;
@@ -74,6 +71,9 @@ public SAM2Small() {
7471

7572
/**
7673
* Create an instance of the model that loads the model and encodes an image
74+
* @param manager
75+
* the model manager that contains the info about where the model
76+
* environment and model weights are installed
7777
*/
7878
public SAM2Small(Sam2EnvManager manager) {
7979
this.isHeavy = true;

0 commit comments

Comments
 (0)