Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
beat.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
14
Issues
14
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
beat
beat.core
Commits
b263c4d8
Commit
b263c4d8
authored
Apr 18, 2019
by
Samuel GAIST
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '64_fix_database_simple_v2' into 'master'
Fix simple/2 database code See merge request
!68
parents
2bc5215d
9e3a9c08
Pipeline
#29413
passed with stages
in 28 minutes and 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
17 deletions
+80
-17
beat/core/test/prefix/databases/simple/2.py
beat/core/test/prefix/databases/simple/2.py
+80
-17
No files found.
beat/core/test/prefix/databases/simple/2.py
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
)}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment