This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
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
removed Debugger.Break() again because rethrowing the exception is even better, debugger will break directly at the cause of the exception (if attached)
tags/v0.9
Meinrad Recheis
6 years ago
parent
ecc4923628
commit
abc99080b7
1 changed files
with
1 additions
and
10 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-10
src/TensorFlowNET.Core/Python.cs
+ 1
- 10
src/TensorFlowNET.Core/Python.cs
View File
@@ -46,9 +46,6 @@ namespace Tensorflow
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
#if DEBUG
Debugger.Break();
#endif
throw;
}
finally
@@ -68,9 +65,6 @@ namespace Tensorflow
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
#if DEBUG
Debugger.Break();
#endif
throw;
}
finally
@@ -89,10 +83,7 @@ namespace Tensorflow
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
#if DEBUG
Debugger.Break();
#endif
Console.WriteLine(ex.ToString());
throw;
return default(TOut);
}
Write
Preview
Loading…
Cancel
Save