Skip to content

Commit

Permalink
improve method name
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m committed Jul 6, 2023
1 parent d703c76 commit 8c99e12
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ public boolean isSupportGPU() {
/**
* {@inheritDoc}
*/
public String getJDLLCompatibleToTrainingVersion() {
public String getJavaTrainingVersion() {
return compatibleVersion;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ public interface WeightFormat {
public String getTrainingVersion();

/**
* Return the version supported by JDLL that it is compatible with
* Return the Java version of the framework supported by JDLL that it is compatible with
* the training version of the weights
* @return the version supported by JDLL that it is compatible with
* @return the Java version of the framework supported by JDLL that it is compatible with
* the training version of the weights
*/
public String getJDLLCompatibleToTrainingVersion();
public String getJavaTrainingVersion();

/**
* Format of the weights of the model. The supported weights by the Bioimage.io are:
Expand Down

0 comments on commit 8c99e12

Please sign in to comment.