ma7583 commited on
Commit
1b5092f
·
verified ·
1 Parent(s): f49b266

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -25,6 +25,79 @@ pvs_sft5
25
  └── training_args.bin
26
  ```
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  ## Start the web server with the model running
29
 
30
  ```python -m uvicorn sft_fastapi:app --host 0.0.0.0 --port 8000```
 
25
  └── training_args.bin
26
  ```
27
 
28
+ ## Data examples (newlines should match):
29
+
30
+ ```
31
+ Current Sequent:
32
+ [1] norm((# x := -1, y := 0 #)) = 1
33
+
34
+ Prev Command 1: (EXPAND "point_on_polygon_perimeter?")
35
+ Prev Command 2: (INST + "s")
36
+ Prev Command 3: (HIDE-ALL-BUT 1)
37
+ Next Command:
38
+ ```
39
+
40
+ ```
41
+ Current Sequent:
42
+ {1} expt(c, (3 + 4 * n)) = expt(c, (1 + 4 * n)) * expt(c, 2)
43
+
44
+ Prev Command 1: (PROPAX)
45
+ Prev Command 2: (HIDE 2)
46
+ Prev Command 3: (EXPAND "^")
47
+ Next Command:
48
+ ```
49
+
50
+ ```
51
+ Current Sequent:
52
+ [-1] derivable?(sin, x!1) AND derivable?(sin, x!1) IMPLIES deriv(sin * sin, x!1) = 2 * (deriv(sin, x!1) * sin(x!1))
53
+ [-2] derivable?[real](sin * sin, x!1)
54
+ [-3] derivable?[real](cos * cos, x!1)
55
+ [-4] FORALL (x: real): derivable?[real](sin, x)
56
+ {-5} FORALL (x: real): derivable?[real](cos, x)
57
+ [1] deriv(cos * cos, x!1) + deriv(sin * sin, x!1) = const_fun(0)(x!1)
58
+
59
+ Prev Command 1: (ASSERT)
60
+ Prev Command 2: (EXPAND "derivable?" -4)
61
+ Prev Command 3: (EXPAND "derivable?" -5)
62
+ Next Command:
63
+ ```
64
+
65
+ ```
66
+ Current Sequent:
67
+ [1] FORALL (x: real): LET S = LAMBDA (n: nat): powerseq(cos_coef, x)(2 * n) IN conv_series?(S) AND cos(x) = inf_sum(S)
68
+
69
+ Prev Command 1: (ASSERT)
70
+ Prev Command 2: (ASSERT)
71
+ Prev Command 3: (HIDE 2)
72
+ Next Command:
73
+ ```
74
+
75
+
76
+ Current Sequent:
77
+ {-1} FORALL (a: {x: real | 0 < x AND x <= pi / 2}): sin(a) > 0
78
+ [-2] a <= pi / 2
79
+ [1] sin(a) > 0
80
+
81
+ ```
82
+ Prev Command 1: (SKEEP)
83
+ Prev Command 2: (CASE "a <= pi/2")
84
+ Prev Command 3: (LEMMA "sin_pos_0tohalfpi")
85
+ Next Command:
86
+ ```
87
+
88
+ ```
89
+ Current Sequent:
90
+ {-1} FORALL (x_1: real): NOT (key_arb_intersections(p, v, G)(x_1) OR parallel_intersections(p, v, G)(x_1))
91
+ {1} FORALL (x: real): NOT key_arb_intersections(p, v, G)(x)
92
+
93
+ Prev Command 1: (EXPAND "empty?")
94
+ Prev Command 2: (EXPAND "member")
95
+ Prev Command 3: (GROUND)
96
+ Next Command:
97
+ ```
98
+
99
+
100
+
101
  ## Start the web server with the model running
102
 
103
  ```python -m uvicorn sft_fastapi:app --host 0.0.0.0 --port 8000```