Compare commits
2 Commits
c0583df391
...
e9d543a0b1
Author | SHA1 | Date |
---|---|---|
|
e9d543a0b1 | 7 months ago |
|
8734cd8901 | 7 months ago |
@ -0,0 +1,17 @@
|
|||||||
|
package com.sztzjy.marketing.entity.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author tz
|
||||||
|
* @date 2024/8/28 9:09
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class KmeansDTO {
|
||||||
|
|
||||||
|
private ArrayList<ArrayList<ArrayList<Float>>> clusters;
|
||||||
|
|
||||||
|
private Integer iterations;
|
||||||
|
}
|
Loading…
Reference in New Issue