Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
LaVizu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
behaviors-ai-public
LaVizu
Commits
6c4352ff
Commit
6c4352ff
authored
Apr 08, 2019
by
Laurianne Charrier
Committed by
Dorian Goepp
Apr 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Amelie comments
parent
a8bd23e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
src/MemoryRanked/RosMemoryRanked.js
src/MemoryRanked/RosMemoryRanked.js
+18
-0
No files found.
src/MemoryRanked/RosMemoryRanked.js
View file @
6c4352ff
...
...
@@ -34,6 +34,24 @@ class RosMemoryRanked extends Component {
}
render
()
{
const
config
=
this
.
props
.
node
.
getConfig
()
if
(
config
&&
'
displayMode
'
in
config
)
{
if
(
config
.
displayMode
===
"
readme
"
)
{
return
(
<
div
>
<
h1
>
Display
the
sequences
of
the
interactions
learnt
by
the
agent
<
/h1
>
<
p
>
Each
time
the
agent
performs
a
<
b
>
sequence
of
interactions
<
/b> in the environment, it records the corresponding <b>valence</
b
>
and
stores
it
in
the
memory
.
Each
record
is
called
an
<
b
>
occurence
<
/b> of the sequence
.
<
/p
>
<
/div>
)
;
}
else
if
(
config
.
displayMode
===
"
settings
"
)
{
return
<
div
>
<
p
>
config
panel
<
/p
>
<
/div>
;
}
}
return
<
MemoryRanked
data
=
{
this
.
state
.
data
}
xLabel
=
{
this
.
state
.
xLabel
}
yLabel
=
{
this
.
state
.
yLabel
}
{...
this
.
props
}
/
>
}
}
...
...
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