TEZv commited on
Commit
8aa719b
·
verified ·
1 Parent(s): 0082789

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - scoring
5
+ - classification
6
+ - recommendation
7
+ - SET
8
+ - science
9
+ - entrepreneurship
10
+ - technology
11
+ ---
12
+
13
+ # set-method
14
+
15
+ Programmatic SET framework: classify projects into Science/Entrepreneurship/Technology spheres, score with dual frameworks, recommend quests by personality type.
16
+
17
+ ## Install
18
+ ```bash
19
+ pip install set-method
20
+ ```
21
+
22
+ ## Quick Start
23
+ ```python
24
+ from set_method import classify, score, recommend
25
+
26
+ result = classify("Biomedical ML project for drug discovery")
27
+ print(result) # {"sphere": "Science", "confidence": 0.87}
28
+ ```
29
+
30
+ Maintained by [K-RnD Lab].