Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
beat
beat.core
Commits
b263c4d8
Commit
b263c4d8
authored
5 years ago
by
Samuel GAIST
Browse files
Options
Downloads
Plain Diff
Merge branch '64_fix_database_simple_v2' into 'master'
Fix simple/2 database code See merge request
!68
parents
2bc5215d
9e3a9c08
No related branches found
No related tags found
1 merge request
!68
Fix simple/2 database code
Pipeline
#29413
passed
5 years ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
beat/core/test/prefix/databases/simple/2.py
+80
-17
80 additions, 17 deletions
beat/core/test/prefix/databases/simple/2.py
with
80 additions
and
17 deletions
beat/core/test/prefix/databases/simple/2.py
+
80
−
17
View file @
b263c4d8
class
View
:
def
setup
(
self
,
root_folder
,
outputs
,
parameters
,
force_start_index
=
None
,
force_end_index
=
None
,
):
"""
Initializes the database
"""
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
return
True
###################################################################################
# #
# Copyright (c) 2019 Idiap Research Institute, http://www.idiap.ch/ #
# Contact: beat.support@idiap.ch #
# #
# Redistribution and use in source and binary forms, with or without #
# modification, are permitted provided that the following conditions are met: #
# #
# 1. Redistributions of source code must retain the above copyright notice, this #
# list of conditions and the following disclaimer. #
# #
# 2. Redistributions in binary form must reproduce the above copyright notice, #
# this list of conditions and the following disclaimer in the documentation #
# and/or other materials provided with the distribution. #
# #
# 3. Neither the name of the copyright holder nor the names of its contributors #
# may be used to endorse or promote products derived from this software without #
# specific prior written permission. #
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND #
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED #
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE #
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE #
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL #
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR #
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER #
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, #
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
###################################################################################
def
done
(
self
):
"""
Should return ``True``, when data is finished
"""
return
True
import
numpy
def
next
(
self
):
"""
Loads the next data block on ``outputs``
"""
from
collections
import
namedtuple
from
beat.backend.python.database
import
View
as
BaseView
return
True
class
View
(
BaseView
):
def
index
(
self
,
root_folder
,
parameters
):
Entry
=
namedtuple
(
"
Entry
"
,
[
"
out
"
])
return
[
Entry
(
42
)]
def
get
(
self
,
output
,
index
):
obj
=
self
.
objs
[
index
]
if
output
==
"
out
"
:
return
{
"
value
"
:
numpy
.
int32
(
obj
.
out
)}
# ----------------------------------------------------------
class
View2
(
BaseView
):
def
index
(
self
,
root_folder
,
parameters
):
Entry
=
namedtuple
(
"
Entry
"
,
[
"
out
"
])
return
[
Entry
(
53
)]
def
get
(
self
,
output
,
index
):
obj
=
self
.
objs
[
index
]
if
output
==
"
out
"
:
return
{
"
value
"
:
numpy
.
int32
(
obj
.
out
)}
# ----------------------------------------------------------
class
LargeView
(
BaseView
):
def
index
(
self
,
root_folder
,
parameters
):
Entry
=
namedtuple
(
"
Entry
"
,
[
"
out
"
])
return
[
Entry
(
0
),
Entry
(
1
),
Entry
(
2
),
Entry
(
3
),
Entry
(
4
)]
def
get
(
self
,
output
,
index
):
obj
=
self
.
objs
[
index
]
if
output
==
"
out
"
:
return
{
"
value
"
:
numpy
.
int32
(
obj
.
out
)}
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