Upload folder using huggingface_hub
Browse files- README.md +3 -0
- config.json +7 -0
- rag_config.json +5 -0
README.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# MNLP_M2_rag_model
|
2 |
+
This is a placeholder RAG reasoning model based on Qwen3-0.6B-Base.
|
3 |
+
It is expected to take query + context as input and produce an answer.
|
config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Qwen/Qwen3-0.6B-Base",
|
3 |
+
"model_type": "qwen2",
|
4 |
+
"architectures": [
|
5 |
+
"AutoModelForCausalLM"
|
6 |
+
]
|
7 |
+
}
|
rag_config.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"document_encoder": "smikulas/MNLP_M2_document_encoder",
|
3 |
+
"rag_dataset": "smikulas/MNLP_M2_rag_dataset",
|
4 |
+
"base_model": "Qwen/Qwen3-0.6B-Base"
|
5 |
+
}
|