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")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//人物互动隐关系预测的社团内部节点
|
2025-07-29 12:13:19 +08:00
|
|
|
export function getInteractionCommunityDetailNodes(ids, time = "2024.05.16 16:56:04") {
|
|
|
|
|
return http.get(`linkPrediction/interaction/community_detail?groupIds=${ids}&dateTime=${time}`)
|
2025-07-25 15:07:08 +08:00
|
|
|
}
|
2025-07-28 15:59:40 +08:00
|
|
|
|
|
|
|
|
//人物互动隐关系预测的社团统计
|
|
|
|
|
export function getInteractionCommunityStatistics() {
|
|
|
|
|
return http.get(`linkPrediction/interaction/community_statistics`)
|
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
2025-07-29 12:13:55 +08:00
|
|
|
// 社交紧密团体的社团列表数据
|
|
|
|
|
export function getSocialCommunityList() {
|
|
|
|
|
return http.get(`/linkPrediction/triangle/community`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 社交紧密团体的社团内部节点
|
|
|
|
|
export function getSocialCommunityDetailNodes(ids) {
|
|
|
|
|
return http.get(`/linkPrediction/triangle/community_detail?groupIds=${ids}`)
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
//
|