-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhuric_types.rs
79 lines (67 loc) · 1.37 KB
/
huric_types.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
pub type Atom = String;
pub type Id = u32;
#[derive(Debug)]
pub struct Huric {
pub id: Id,
pub prompt: String,
pub tokens: Vec<Token>,
pub dependencies: Vec<Dependency>,
pub semantics_frames: Vec<SemanticFrame>,
pub entities: Vec<Entity>,
pub lexical_groundings: Vec<LexicalGrounding>,
}
#[derive(Debug)]
pub struct Token {
pub id: Id,
pub lemma: String,
pub pos: String,
pub surface: String,
}
#[derive(Debug)]
pub struct Dependency {
pub from: Id,
pub to: Id,
pub r#type: DependencyType,
}
#[derive(Debug)]
pub enum DependencyType {}
#[derive(Debug)]
pub struct SemanticFrame {
pub name: String,
pub token_id: Id,
pub elements: Vec<FrameElement>,
}
#[derive(Debug)]
pub struct FrameElement {
pub r#type: FrameElementType,
pub semantic_head_id: Id,
pub tokens_id: Vec<Id>,
}
#[derive(Debug)]
pub enum FrameElementType {}
#[derive(Debug)]
pub struct Entity {
pub atom: Atom,
pub r#type: EntityType,
pub attributes: Vec<Attribute>,
pub coordinate: Option<Coordinate>,
}
#[derive(Debug)]
pub enum EntityType {}
#[derive(Debug)]
pub struct Attribute {
pub name: String,
pub value: String,
}
#[derive(Debug)]
pub struct Coordinate {
pub angle: f32,
pub x: f32,
pub y: f32,
pub z: f32,
}
#[derive(Debug)]
pub struct LexicalGrounding {
pub atom: Atom,
pub token: Id,
}