Sync from GitHub
Browse files- .gitattributes +1 -0
- .github/workflows/sync_hf.yml +12 -1
- .gitignore +1 -0
- .huggingfaceignore +2 -0
- README.md +4 -0
- assets/vis.gif +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
assets/vis.gif filter=lfs diff=lfs merge=lfs -text
|
.github/workflows/sync_hf.yml
CHANGED
|
@@ -15,4 +15,15 @@ jobs:
|
|
| 15 |
- name: Push to hub
|
| 16 |
env:
|
| 17 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 18 |
-
run:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
- name: Push to hub
|
| 16 |
env:
|
| 17 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 18 |
+
run: |
|
| 19 |
+
pip install huggingface_hub
|
| 20 |
+
python - <<EOF
|
| 21 |
+
from huggingface_hub import HfApi
|
| 22 |
+
api = HfApi()
|
| 23 |
+
api.upload_folder(
|
| 24 |
+
folder_path=".",
|
| 25 |
+
repo_id="nuriyev/text2mcdm",
|
| 26 |
+
repo_type="space",
|
| 27 |
+
commit_message="Sync from GitHub",
|
| 28 |
+
)
|
| 29 |
+
EOF
|
.gitignore
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
.*
|
| 2 |
!.gitignore
|
| 3 |
!.github/
|
|
|
|
| 4 |
trash/
|
| 5 |
__pycache__/
|
| 6 |
outputs/
|
|
|
|
| 1 |
.*
|
| 2 |
!.gitignore
|
| 3 |
!.github/
|
| 4 |
+
!.huggingfaceignore
|
| 5 |
trash/
|
| 6 |
__pycache__/
|
| 7 |
outputs/
|
.huggingfaceignore
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.vscode/
|
| 2 |
+
assets/vis.gif
|
README.md
CHANGED
|
@@ -13,6 +13,10 @@ pinned: false
|
|
| 13 |
|
| 14 |
How do you make decisions when your reasoning is messy and contains uncertainty, subjectivity, or contradictions? This project leverages large language models fine-tuned to extract Z-number decision matrix from natural language narrative. The extracted matrix is then analyzed using z-number-based Multi-Criteria Decision-Making (MCDM) methods (TOPSIS, PROMETHEE).
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
## Usage
|
| 17 |
|
| 18 |
```bash
|
|
|
|
| 13 |
|
| 14 |
How do you make decisions when your reasoning is messy and contains uncertainty, subjectivity, or contradictions? This project leverages large language models fine-tuned to extract Z-number decision matrix from natural language narrative. The extracted matrix is then analyzed using z-number-based Multi-Criteria Decision-Making (MCDM) methods (TOPSIS, PROMETHEE).
|
| 15 |
|
| 16 |
+
[](https://huggingface.co/spaces/nuriyev/text2mcdm)
|
| 17 |
+
|
| 18 |
+
[Demo](https://huggingface.co/spaces/nuriyev/text2mcdm) | [Model](https://huggingface.co/nuriyev/Qwen3-4B-znum-decision-matrix) | [Dataset](https://huggingface.co/datasets/nuriyev/text2mcdm)
|
| 19 |
+
|
| 20 |
## Usage
|
| 21 |
|
| 22 |
```bash
|
assets/vis.gif
ADDED
|
Git LFS Details
|