botryan96 commited on
Commit
308126d
1 Parent(s): 9196ed2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -0
README.md CHANGED
@@ -57,4 +57,14 @@ from transformers import AutoTokenizer, AutoModelForTokenClassification
57
 
58
  tokenizer = AutoTokenizer.from_pretrained("botryan96/GeoBERT")
59
  model = AutoModelForTokenClassification.from_pretrained("botryan96/GeoBERT")
 
 
 
 
 
 
 
 
 
 
60
  ```
 
57
 
58
  tokenizer = AutoTokenizer.from_pretrained("botryan96/GeoBERT")
59
  model = AutoModelForTokenClassification.from_pretrained("botryan96/GeoBERT")
60
+
61
+ #Define the pipeline
62
+ from transformers import pipeline
63
+ ner_machine = pipeline('ner',model = models,tokenizer=tokenizer, aggregation_strategy="simple")
64
+
65
+ #Define the sentence
66
+ sentence = 'In North America, the water storage in the seepage face model is higher than the base case because positive pore pressure is requisite for drainage through a seepage face boundary condition. The result from the resistivity data supports the notion, especially in the northern part of the Sandstone Sediment formation. The active formation of America has a big potential for Oil and Gas based on the seismic section, has been activated since the Paleozoic'
67
+
68
+ #Deploy the NER Machine
69
+ ner_machine(sentence)
70
  ```