Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More doc fixing #230

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9

# - name: Install dependencies
# run: |
Expand All @@ -29,5 +29,5 @@ jobs:
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: docs/mkdocs.yml
CONFIG_FILE: docs/mkdocs.yaml
REQUIREMENTS: docs/requirements.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This page contains information on how to install and use Nesta's skills extracti

We currently support three different taxonomies to map onto: the [European Commission’s European Skills, Competences, and Occupations (ESCO)](https://esco.ec.europa.eu/en/about-esco/what-esco), [Lightcast’s Open Skills](https://skills.lightcast.io/) and a “toy” taxonomy developed internally for the purpose of testing.

If you'd like to learn more about the models used in the library, please refer to the [model card page](https://nestauk.github.io/ojd_daps_skills/source/model_card.md).
If you'd like to learn more about the models used in the library, please refer to the [model card page](https://nestauk.github.io/ojd_daps_skills/model_card.html).

You may also want to read more about the wider project by reading:

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md → docs/home.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This page contains information on how to install and use Nesta’s skills extrac

We currently support three different taxonomies to map onto: the European Commission’s European Skills, Competences, and Occupations (ESCO), Lightcast’s Open Skills and a “toy” taxonomy developed internally for the purpose of testing.

If you’d like to learn more about the models used in the library, please refer to [the model card page](source/model_card.md). For more information on how we labelled the training data for the models see [the labelling page](source/labelling.md). A more in depth discussion of the pipeline and evaluation of it can be found in [the pipeline summary and metrics page](source/pipeline_summary.md).
If you’d like to learn more about the models used in the library, please refer to [the model card page](model_card.md). For more information on how we labelled the training data for the models see [the labelling page](labelling.md). A more in depth discussion of the pipeline and evaluation of it can be found in [the pipeline summary and metrics page](pipeline_summary.md).

You may also want to read more about the wider project by reading:

Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions docs/mkdocs.yml → docs/mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ theme:
icon: material/weather-sunny
name: Switch to light mode
nav:
- Home: index.md
- Model cards: source/model_card.md
- Pipeline summary and metrics: source/pipeline_summary.md
- Entity labelling: source/labelling.md
- Home: home.md
- Model cards: model_card.md
- Pipeline summary and metrics: pipeline_summary.md
- Entity labelling: labelling.md
plugins:
- same-dir
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ojd-daps-skills"
version = "0.1.0"
description = ""
version = "2.0.0"
description = "An NLP package to extract skills from job adverts."
authors = ["Nesta <[email protected]>"]

readme = "README.md"
Expand Down
Loading