https://github.com/tomitrescak/skiller
https://github.com/tomitrescak/skiller
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tomitrescak/skiller
- Owner: tomitrescak
- Created: 2022-11-10T08:37:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-10T08:43:44.000Z (over 2 years ago)
- Last Synced: 2025-02-07T18:54:03.288Z (4 months ago)
- Language: JavaScript
- Size: 1.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prerequisties
- Python 3.10
# Instructions
1. Create the virtual environment
```
python3 -m venv .venv
```2. Activate it
```
source .venv/bin/activate
```3. Install Requirements
```
pip install -r requirements.txt
```4. Create Embeddings
You need to pre-cache skill framework embeddings.
This will take a long time, but you only run this once.```
python -m main --init
```5. Have Fun!
You can now run skill extraction with:
```
python -m main --input test.txt --threshold 0.3
```Just put the text from which you want to extract skills into the file "test.txt"