2025-07-25 15:07:08 +08:00
|
|
|
import http from "@/utils/http"
|
2025-07-23 15:02:10 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的用户组列表
|
|
|
|
|
export function getGroupUserListFromInteraction() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/interaction/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
|
|
|
|
|
2025-07-25 15:07:08 +08:00
|
|
|
//人物互动隐关系预测的社团节点
|
|
|
|
|
export function getInteractionCommunityNodes() {
|
|
|
|
|
return http.get("linkPrediction/interaction/community")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物互动隐关系预测的社团内部节点
|
|
|
|
|
export function getInteractionCommunityDetailNodes(ids) {
|
|
|
|
|
return http.get(`linkPrediction/interaction/community_detail?groupIds=${ids}`)
|
|
|
|
|
}
|
2025-07-23 15:02:10 +08:00
|
|
|
//社交紧密团体识别的用户组列表
|
|
|
|
|
export function getGroupUserListFromTriangle() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/triangle/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getGroupUserListFromSocial() {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get("/linkPrediction/social/group_list")
|
2025-07-23 15:02:10 +08:00
|
|
|
}
|
2025-07-24 16:56:51 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的贴文列表
|
|
|
|
|
export function getInteractionPostList(outoIncrement) {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get(`/linkPrediction/interaction/post_list?page=${outoIncrement}`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//社交紧密团体识别的贴文列表
|
|
|
|
|
export function getSocialPostList(outoIncrement) {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get(`/linkPrediction/social/post_list?page=${outoIncrement}`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物社交隐关系预测用户组列表
|
|
|
|
|
export function getInteractionHiddenPostList(outoIncrement) {
|
2025-07-25 15:07:08 +08:00
|
|
|
return http.get(`/linkPrediction/triangle/post_list?page=${outoIncrement}`)
|
2025-07-24 16:56:51 +08:00
|
|
|
}
|
2025-07-25 15:07:08 +08:00
|
|
|
|
|
|
|
|
//
|