Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
ReferenceModel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container 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
VIPS
Models
Python
ReferenceModel
Compare revisions
27a4750bd9e350f95c620f3a1b1c8fb143c77d82 to c3720746a46d8881220d7b34b3c65a0125a5e140
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
VIPS/models/python/referencemodel
Select target project
No results found
c3720746a46d8881220d7b34b3c65a0125a5e140
Select Git revision
Branches
main
Tags
0.1.5
0.1.6
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.2.6
10 results
Swap
Target
VIPS/models/python/referencemodel
Select target project
VIPS/models/python/referencemodel
1 result
27a4750bd9e350f95c620f3a1b1c8fb143c77d82
Select Git revision
Branches
main
Tags
0.1.5
0.1.6
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.2.6
10 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
camelCasing props in sample config
· 14cf67dc
Tor-Einar Skog
authored
2 years ago
14cf67dc
Depending on the latest version of vipscore-python-common
· c3720746
Tor-Einar Skog
authored
2 years ago
c3720746
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
src/vips_reference_model/reference_model.py
+2
-2
2 additions, 2 deletions
src/vips_reference_model/reference_model.py
with
3 additions
and
3 deletions
pyproject.toml
View file @
c3720746
...
...
@@ -19,7 +19,7 @@ dependencies = [
"pydantic"
,
"pytz"
,
"pandas"
,
"vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git
@0.2.3
"
"vipscore_common @ git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git"
]
requires-python
=
">
=
3.9
"
...
...
This diff is collapsed.
Click to expand it.
src/vips_reference_model/reference_model.py
View file @
c3720746
...
...
@@ -111,8 +111,8 @@ class ReferenceModel(VIPSModel):
"""
A sample configuration in JSON format (TODO check relation with Dict)
"""
return
"""
{
model
_i
d:
'
REFERENCEM
'
,
config
_p
arameters: {
model
I
d:
'
REFERENCEM
'
,
config
P
arameters: {
'
sowingDate
'
:
'
2022-03-01
'
,
'
observations
'
: [
{
'
timeMeasured
'
:
'
2015-03-01T00:00:00+01:00
'
,
'
elementMeasurementTypeId
'
:
'
TM
'
,
'
logIntervalId
'
:
'
2
'
,
'
value
'
:
'
1.41025
'
},
...
...
This diff is collapsed.
Click to expand it.