Yiming Qian commited on
Commit
e0d1d85
·
verified ·
1 Parent(s): 9a571e4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -6
README.md CHANGED
@@ -9,17 +9,14 @@ It is a model based on quantized LLAMA 3 8B. The goal of this model is designed
9
 
10
  Please use the following code to parse PDF.
11
 
 
 
12
  import pymupdf
13
-
14
  from bs4 import BeautifulSoup
15
-
16
  import pickle
17
-
18
  import torch
19
-
20
  from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
21
-
22
- torch.random.manual_seed(0)
23
 
24
  model_kwargs = dict(
25
  use_cache=False,
 
9
 
10
  Please use the following code to parse PDF.
11
 
12
+ Our code requires to import the following libraries
13
+ '''
14
  import pymupdf
 
15
  from bs4 import BeautifulSoup
 
16
  import pickle
 
17
  import torch
 
18
  from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
19
+ '''
 
20
 
21
  model_kwargs = dict(
22
  use_cache=False,