This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
scisharp
/
TensorFlow.NET
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
21
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix the mapping from dtype to numpy descr of byte.
tags/v0.100.5-BERT-load
Yaohui Liu
2 years ago
parent
2b00eb8c0f
commit
ed8ccecc14
No known key found for this signature in database
GPG Key ID:
E86D01E1809BD23E
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/TensorFlowNET.Core/NumPy/Persistence/NpyFormat.cs
+ 1
- 1
src/TensorFlowNET.Core/NumPy/Persistence/NpyFormat.cs
View File
@@ -70,7 +70,7 @@ public class NpyFormat
if (type == typeof(bool))
return "|b1";
else if (type == typeof(byte))
return "|
i
1";
return "|
u
1";
else if (type == typeof(short))
return "<i2";
else if (type == typeof(int))
Write
Preview
Loading…
Cancel
Save