-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added references to missing pieces for danish NLP and using DFM
- Loading branch information
1 parent
27c0937
commit 80b8978
Showing
2 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,15 +35,21 @@ Furthermore, during data processing and training, the data is stored on UCloud w | |
![](_static/structure.png) | ||
|
||
|
||
## Improving the Danish Language Technology Landscape | ||
|
||
The Danish Foundations models collaborate with the [Danish Data Science Community](https://danskdatascience.dk/), [Centre for Humanities Computing Aarhus](https://chcaa.io/), [The Alexandra Institute](https://alexandra.dk) to promote the development of Danish language tools. We continually gather information about how to improve the Danish language technologies and how to best support the community. To this end we have created a [list of missing pieces for Danish NLP](https://github.com/centre-for-humanities-computing/danish-foundation-models/discussions/categories/missing-pieces-for-danish-nlp) and we invite any 1) to add to the list, 2) solve one of the problems or 3) upvote the problems you think are most important. | ||
|
||
|
||
## Join Us | ||
|
||
We invite collaboration and contributions from industry professionals, researchers, and the open-source community. Together, we can advance the field of Danish NLP and create a more inclusive digital future. You can reach out to us using the following channels: | ||
|
||
|
||
| | | | ||
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | | ||
| :octicons-people-24: - [**DDSC Slack**](https://join.slack.com/t/danskdatascie-o8m9638/shared_invite/zt-1jh2dwmj4-D_mjywfXERvVP75n9O0ykg) | Join the discussion in the "danish-foundation-models-text"-channel | | ||
| :octicons-comment-discussion-24: - [**GitHub Discussion**](https://github.com/centre-for-humanities-computing/danish-foundation-models/discussions) | Ask questions or start a discussion | | ||
| :octicons-issue-tracks-24: - [**GitHub Issues**](https://github.com/centre-for-humanities-computing/danish-foundation-models/issues) | Noticed a bug in the code? Please create an issue | | ||
| | | | ||
| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- | | ||
| :octicons-people-24: - [**DDSC Slack**](https://join.slack.com/t/danskdatascie-o8m9638/shared_invite/zt-1jh2dwmj4-D_mjywfXERvVP75n9O0ykg) | Join the discussion in the "danish-foundation-models-text"-channel | | ||
| :octicons-comment-discussion-24: - [**GitHub Discussion**](https://github.com/centre-for-humanities-computing/danish-foundation-models/discussions) | Ask questions or start a discussion | | ||
| :octicons-issue-tracks-24: - [**GitHub Issues**](https://github.com/centre-for-humanities-computing/danish-foundation-models/issues) | Noticed a bug in the code? Please create an issue | | ||
| :octicons-feed-rocket-16: - [**Using the model?**](https://github.com/centre-for-humanities-computing/danish-foundation-models/discussions/categories/using-our-models) | If you use the model, let us know it makes it easier for us to apply for funding and justify the devopment of the project. | | ||
|
||
[Contact us :fontawesome-solid-paper-plane:](mailto:[email protected]){ .md-button } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,33 @@ | ||
install: | ||
@echo "Installing package and required dependencies" | ||
pip install -e .[dev,test,docs] | ||
|
||
test: ## Run tests | ||
test: | ||
@echo "Running tests" | ||
pytest src | ||
|
||
lint: ## Format code | ||
lint: | ||
@echo "Linting code" | ||
ruff check src --fix | ||
black . | ||
|
||
type-check: ## Type-check code | ||
type-check: | ||
@echo "Type-checking code-base" | ||
pyright src | ||
|
||
validate: ## Run all checks | ||
validate: | ||
@echo "Running all checks" | ||
make lint | ||
make type-check | ||
make test | ||
|
||
pr: ## Run relevant tests before PR | ||
pr: | ||
@echo "Running relevant checks before PR" | ||
make validate | ||
gh pr create -w | ||
|
||
docs-serve: ## build and serve documentation | ||
# make sure you have installed docs: | ||
# pip install -e .[docs] | ||
docs-serve: | ||
@echo "Serving documentation" | ||
@echo "Make sure you have installed docs:" | ||
@echo "pip install -e .[docs]" | ||
mkdocs serve |