simmo commited on
Commit
5278b90
1 Parent(s): dd36a06

Updated readme

Browse files
Files changed (1) hide show
  1. README.md +30 -2
README.md CHANGED
@@ -11,12 +11,40 @@ tags:
11
  base_model: unsloth/mistral-7b-instruct-v0.2-bnb-4bit
12
  ---
13
 
 
 
 
14
  # Uploaded model
15
 
16
  - **Developed by:** simmo
17
  - **License:** apache-2.0
18
  - **Finetuned from model :** unsloth/mistral-7b-instruct-v0.2-bnb-4bit
19
 
20
- This mistral model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
21
 
22
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  base_model: unsloth/mistral-7b-instruct-v0.2-bnb-4bit
12
  ---
13
 
14
+ # What is this?
15
+ Dump the full text of a court case into this model and it will summarize it for you
16
+
17
  # Uploaded model
18
 
19
  - **Developed by:** simmo
20
  - **License:** apache-2.0
21
  - **Finetuned from model :** unsloth/mistral-7b-instruct-v0.2-bnb-4bit
22
 
 
23
 
24
+ # Model Output
25
+ ```
26
+ {
27
+ ""Case Name"": "Hogle Holdings Ltd. v. National Specialty Cars Ltd.",
28
+ ""Court"": "Superior Court of Justice, Cour superieure de justice",
29
+ ""Date of Judgement"": "June 14, 2004",
30
+ ""Overview"": "The case involves two motions: one by the plaintiff for various orders due to difficulties in obtaining document production and examination for discovery from the defendant, and another by the defendant for an order to strike out the plaintiff’s statement of defence and counterclaim for non-compliance with timetable orders.",
31
+ ""Facts"": "The plaintiff encountered difficulties in obtaining document production and examination for discovery from the defendant. The defendant's response was characterized by delays and obstruction, leading the plaintiff to seek various orders including permission to search the defendant's premises for relevant documents.",
32
+ ""Legal Issue"": "The legal issues revolve around the plaintiff's request for an order striking out the defendant’s statement of defence and counterclaim due to non-compliance with timetable orders, and the plaintiff's motion for permission to enter the defendant’s premises and search for relevant documents.",
33
+ ""Arguments"": "The plaintiff argued that it had a right to search the defendant's premises for relevant documents and make copies of them based on Rule 32, while the defendant argued against such an order. The plaintiff also argued that it deliberately failed to comply with timetable orders to pressure the defendant into producing documents.",
34
+ ""Courts Decision"": "The court denied the plaintiff's request for permission to search the defendant’s premises and make copies of relevant documents. The court also declined to strike out the defendant's statement of defence and counterclaim due to non-compliance with timetable orders, but ordered both parties not to be awarded costs on either motion.",
35
+ ""Legal Precedents"": "The court did not provide any explicit legal precedents in the given case."
36
+ }
37
+ ```
38
+
39
+ # Recommended Grammar
40
+ ```
41
+ root ::= Case
42
+ Case ::= "{" ws "\"\"Case Name\"\":" ws string "," ws "\"\"Court\"\":" ws string "," ws "\"\"Date of Judgement\"\":" ws string "," ws "\"\"Overview\"\":" ws string "," ws "\"\"Facts\"\":" ws string "," ws "\"\"Legal Issue\"\":" ws string "," ws "\"\"Arguments\"\":" ws string "," ws "\"\"Courts Decision\"\":" ws string "," ws "\"\"Legal Precedents\"\":" ws string "}"
43
+ Caselist ::= "[]" | "[" ws Case ("," ws Case)* "]"
44
+ string ::= "\"" ([^"]*) "\""
45
+ boolean ::= "true" | "false"
46
+ ws ::= [ \t\n]*
47
+ number ::= [0-9]+ "."? [0-9]*
48
+ stringlist ::= "[" ws "]" | "[" ws string ("," ws string)* ws "]"
49
+ numberlist ::= "[" ws "]" | "[" ws string ("," ws number)* ws "]"
50
+ ```