Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Geode Packages
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Projet GEODE
Geode Packages
Commits
334d866d
Commit
334d866d
authored
2 years ago
by
Alice Brenon
Browse files
Options
Downloads
Patches
Plain Diff
Add module (geode packages demo) containing the ANF-TDM 2022 Tutorial
parent
72f160b4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geode/packages/demo.scm
+61
-0
61 additions, 0 deletions
geode/packages/demo.scm
with
61 additions
and
0 deletions
geode/packages/demo.scm
0 → 100644
+
61
−
0
View file @
334d866d
(
define-module
(
geode
packages
demo
)
#
:use-module
((
geode
packages
annotation
)
#
:select
(
python-perdido
python-spacy
python-stanza
))
#
:use-module
((
geode
packages
models
)
#
:select
(
spacy-fr-core-news-sm
stanza-fr
))
#
:use-module
((
gnu
packages
base
)
#
:select
(
coreutils
))
#
:use-module
((
gnu
packages
bash
)
#
:select
(
bash
))
#
:use-module
((
gnu
packages
python
)
#
:select
(
python
))
#
:use-module
((
gnu
packages
python-xyz
)
#
:select
(
jupyter
))
#
:use-module
((
gnu
packages
wget
)
#
:select
(
wget
))
#
:use-module
((
guix
build-system
copy
)
#
:select
(
copy-build-system
))
#
:use-module
((
guix
gexp
)
#
:select
(
gexp
))
#
:use-module
((
guix
git-download
)
#
:select
(
git-fetch
git-reference
))
#
:use-module
((
guix
licenses
)
#
:select
(
bsd-2
))
#
:use-module
((
guix
packages
)
#
:select
(
base32
origin
package
)))
(
define-public
geoparsing-tutorial
(
package
(
name
"geoparsing-tutorial"
)
(
version
"2fdf55058ca53a07265324fb23cd845650bc0010"
)
(
home-page
"https://gitlab.liris.cnrs.fr/lmoncla/tutoriel-anf-tdm-2022-python-geoparsing"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
home-page
)
(
commit
version
)))
(
sha256
(
base32
"0fp8b08z4y0l8g7ngwi057pmby27pw50ihc179p10zklp4v9n24h"
))))
(
build-system
copy-build-system
)
(
propagated-inputs
(
list
bash
coreutils
jupyter
python
python-perdido
python-spacy
python-stanza
spacy-fr-core-news-sm
stanza-fr
wget
))
(
arguments
(
list
#
:install-plan
#
~
'
((
"Tutoriel-geoparsing.ipynb"
"srv/notebooks/Tutoriel-geoparsing.ipynb"
)
(
"data"
"srv/notebooks/data"
))))
(
synopsis
"Tutorial comparing the use of three python library for geoparsing"
)
(
description
"This package provides a notebook comparing the python libraries Perdido,
SpaCy and Stanza on geoparsing tasks."
)
(
license
bsd-2
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment