Spaces:
Sleeping
Sleeping
test example added and how to use it
Browse files
README.md
CHANGED
@@ -13,15 +13,57 @@ short_description: 'A chatbot to evaluate geoscience student assessment papers'
|
|
13 |
|
14 |
|
15 |
# Model Name
|
16 |
-
|
|
|
17 |
## Overview
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
21 |
-
[Describe the architecture and specific modifications if any]
|
22 |
|
23 |
-
##
|
24 |
-
[Details about the training dataset and any preprocessing steps]
|
25 |
|
26 |
|
27 |
|
|
|
13 |
|
14 |
|
15 |
# Model Name
|
16 |
+
geobot_chat-v0
|
17 |
+
pat to model: ShebMichel/geobot_teacher-v0
|
18 |
## Overview
|
19 |
+
This bot is about assessing geo student assignment paper with eith a pass or fail mark.
|
20 |
+
|
21 |
+
## TESTING THE BOT
|
22 |
+
However, as of today Nov 7, 2024, to use it,
|
23 |
+
1- Load your data in json format or copy the below and save it as a json:
|
24 |
+
|
25 |
+
{
|
26 |
+
"short_answer_questions": {
|
27 |
+
"question1": {
|
28 |
+
"question": "How do sedimentary rocks form?",
|
29 |
+
"answer": "Sedimentary rocks form from the accumulation of sediments."
|
30 |
+
},
|
31 |
+
"question2": {
|
32 |
+
"question": "How do metamorphic rocks form?",
|
33 |
+
"answer": "Metamorphic rocks form under pressure and heat, altering existing rocks."
|
34 |
+
},
|
35 |
+
"question3": {
|
36 |
+
"question": "What are the stages of the rock cycle?",
|
37 |
+
"answer": "The rock cycle involves the transformation of rocks through melting, cooling, weathering, and erosion."
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"long_answer_questions": {
|
41 |
+
"question1": {
|
42 |
+
"question": "What is the purpose of down-hole logging?",
|
43 |
+
"answer": "It is used to gather detailed information about rock layers and fluids."
|
44 |
+
},
|
45 |
+
"question2": {
|
46 |
+
"question": "What types of logs are used in down-hole logging?",
|
47 |
+
"answer": "Common logs include resistivity logs, sonic logs, and density logs."
|
48 |
+
}
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
2- If successfully loaded, you will see all the json data into the Processed Questions box
|
53 |
+
|
54 |
+
3- For the example shown above, you either click:
|
55 |
+
- SHORT ANSWER QUESTIONS
|
56 |
+
- LONG ANSWER QUESTIONS
|
57 |
+
|
58 |
+
Once selected, the Processed Questions box will only show the questions for the selected options.
|
59 |
+
Also, in the "Edit Selected Question" box, you will have the first question as input text,
|
60 |
+
|
61 |
+
4 - Now click submit for the model to run.
|
62 |
+
The result is printed on "Model Response" box.
|
63 |
|
64 |
+
5- click clear if you want to do it again
|
|
|
65 |
|
66 |
+
##
|
|
|
67 |
|
68 |
|
69 |
|