Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
FAC69
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
David Lanzendörfer
FAC69
Commits
e0bf4ab7
Commit
e0bf4ab7
authored
9 months ago
by
David Lanzendörfer
Browse files
Options
Downloads
Patches
Plain Diff
Fix issue with arrays
parent
c1f77780
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/py/fac_tools.py
+2
-2
2 additions, 2 deletions
src/py/fac_tools.py
with
2 additions
and
2 deletions
src/py/fac_tools.py
+
2
−
2
View file @
e0bf4ab7
...
...
@@ -135,5 +135,5 @@ def load_weights_and_biases(server,weights_and_biases):
write_value_multi_array
(
server
,
"
DECODER
"
,
"
WEIGHTS
"
,
weights_and_biases
[
'
decoder
'
][
'
weights
'
])
write_value_multi_array
(
server
,
"
DECODER
"
,
"
RWEIGHTS
"
,
weights_and_biases
[
'
decoder
'
][
'
rnn_weights
'
])
write_value_array
(
server
,
"
HIDDEN
"
,
"
BIAS
"
,
weights_and_biases
[
'
hidden
'
][
'
biases
'
])
write_value_array
(
server
,
"
HIDDEN
"
,
"
WEIGHTS
"
,
weights_and_biases
[
'
hidden
'
][
'
weights
'
])
write_value_array
(
server
,
"
HIDDEN
"
,
"
RWEIGHTS
"
,
weights_and_biases
[
'
hidden
'
][
'
rnn_weights
'
])
write_value_
multi_
array
(
server
,
"
HIDDEN
"
,
"
WEIGHTS
"
,
weights_and_biases
[
'
hidden
'
][
'
weights
'
])
write_value_
multi_
array
(
server
,
"
HIDDEN
"
,
"
RWEIGHTS
"
,
weights_and_biases
[
'
hidden
'
][
'
rnn_weights
'
])
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