Friedel van Megen
4c8c8637a1
make managed file versioned
...
NOTE: manually editing the setting via the GUI will remove the version tag!
2017-03-20 09:34:00 +01:00
Friedel van Megen
8b592ba1f9
more fixes
2017-03-20 09:33:59 +01:00
Friedel van Megen
fff743b55b
updating cs projects
2017-03-20 09:33:59 +01:00
Friedel van Megen
bffb377070
updating the projects
2017-03-20 09:33:58 +01:00
Zhou Wang
7c461ac79d
restore some mappings as they are used by Python
2017-03-19 08:25:19 +01:00
Zhou Wang
94fa8f82a5
remove unused files
2017-03-19 08:25:18 +01:00
Zhou Wang
baef1e0a9f
move instantiation methods to ValueExtend
2017-03-19 08:25:17 +01:00
Zhou Wang
80fb6af15a
remove unused mappings
2017-03-19 08:25:16 +01:00
Zhou Wang
bf8f7ffe86
add create value for N-Dimensional onehot vector input
2017-03-19 08:25:15 +01:00
Zhou Wang
59910e0d34
not expose unused NDArrayViewConstructor
2017-03-19 08:25:09 +01:00
Zhou Wang
a0e3ebfcdb
simplify LoadModel in swig interface
2017-03-19 08:19:40 +01:00
Zhou Wang
7da175b11f
not expose unusable NDArrayView constructor to C#
2017-03-19 08:19:40 +01:00
Amit Agarwal
d2f57f7266
CNTK v2 library: Fix AV in op_name calls for UserFunction.
2017-03-17 16:58:56 -07:00
Amit Agarwal
15d2c62fd3
CNTK v2 library: Add proper error message when grad called on a Function without an explicit [wrt] list and none of the Function's arguments haave needs_gradient == True.
2017-03-17 16:58:08 -07:00
Amit Agarwal
dda5c53ec9
CNTK v2 library: Fix clone to a) Correctly handle repalcement of Parameters of Block Function instances and b) Root Function output itself being replaced.
2017-03-17 16:58:08 -07:00
Emad Barsoum
fcfe3cdf5e
Fix jenkins.
2017-03-17 12:55:33 -07:00
Emad Barsoum
8da12bcd49
Merge with master.
2017-03-17 10:36:40 -07:00
Emad Barsoum
fbce6c6f56
Add back compatibility layer.
2017-03-17 10:31:26 -07:00
Eldar Akchurin
ee89640db2
Fixing py side for two image deserializers
2017-03-17 14:43:56 +01:00
Alexey Reznichenko
124f07a0cc
Another attempt at streamlining device selection
...
Update device selection API as agreed:
* drop BestDevice() and DefaultDevice()
* add an option to specify excluded devices that should not be used as
globally default (neither auto-selected nor explicitly specified)
* add a mechanism to query device properties
* add a method to determine if a device is locked or not (in real-time)
* in SetDefaultDevice, offer an option to exclusively lock the specified
device.
2017-03-17 12:34:54 +01:00
Emad Barsoum
8b47381d2f
More fixes.
2017-03-16 17:25:17 -07:00
Emad Barsoum
f341959d9d
More ont_hot fixes.
2017-03-16 16:30:04 -07:00
Emad Barsoum
4a93dd0021
Fix Parameters class.
2017-03-16 15:41:15 -07:00
Emad Barsoum
c4e4b3ab94
Fix rank loss.
2017-03-16 14:38:33 -07:00
Emad Barsoum
8af0ea3f18
Merge branch 'master' into 2.0rc/breakingChanges
...
Merge with master...
2017-03-16 14:19:31 -07:00
Emad Barsoum
622798a4bd
Fix sparce test.
2017-03-16 14:18:42 -07:00
Zhou Wang
927c1e49cf
add CreateSequence from sparse input
...
expose CreateSequence using sparse in C#
adapt API and C# binding
update baseline
aligning argument names
adapt test case to make sure at 1 non-zero values is created
adapt random generation of sparse sequence
2017-03-16 07:30:57 +01:00
Emad Barsoum
e25dd44c70
Merge with master.
2017-03-15 22:10:17 -07:00
Emad Barsoum
d86c231d1f
Move all examples and notebook to use the new namespace.
2017-03-15 22:07:51 -07:00
Mark Hillebrand
97e674c934
Bump versions
2017-03-15 17:16:54 +01:00
Mark Hillebrand
ec76e439cf
bindings/python/doc: fix most Sphinx warnings and some misc. errors
2017-03-15 17:16:47 +01:00
Mark Hillebrand
09c71fe83a
bindings/python/doc: fix most Sphinx warnings and some misc. errors
2017-03-15 09:27:41 +01:00
Frank Seide
259ce6ccd1
merged from master
2017-03-14 17:56:50 -07:00
Frank Seide
bc2f42553c
updated layerref.rst
2017-03-14 16:28:31 -07:00
Frank Seide
0e774ec2e1
merged from master
2017-03-14 15:44:40 -07:00
Amit Agarwal
60cf546948
Revert "CNTK v2 library: API changes"
...
This reverts commit a0d6a0b661602a365b99bbf3fa2de5649431b26f.
2017-03-14 13:55:23 -07:00
Amit Agarwal
3499e05518
CNTK v2 library: Add ability to evaluate and fetch outputs as part of the Function.grad method
2017-03-14 12:04:48 -07:00
Amit Agarwal
a195ebf73a
CNTK v2 library: Fix output Value object shapes to not have the sequence axis if the variable the Value corresponds to does not have a sequence axis
2017-03-14 12:04:48 -07:00
Amit Agarwal
a789fa8507
CNTK v2 library: API changes
...
1) input_variable -> input
2) placeholder_variable -> forward_declaration
3) Function.replace_placeholder(s) -> Function.bind_forward_declaration(s)
4) output_variable -> UserFunction.output
5) ops.input only contains the batch axis; sequence.input contains both
the batch and sequence axes
Currently none of the examples have been modified to use the new APIs just
as a means of ensuring that the old deprecated APIs still work after being
redirected to the new APIs. Examples/tests will be changed to use the new
API in a latter commit.
2017-03-14 12:04:09 -07:00
Amit Agarwal
62c5fd7936
CNTK v2 library: Additional tests for >1D sparse inputs
2017-03-14 12:04:09 -07:00
Willi Richert
8e3a398d9a
Omit shapes in NDArrayView.slice_view() doctest since they are written as long in Python 2.7
2017-03-14 12:11:26 +01:00
Willi Richert
d047acb5d4
Add a fast SGD implementation; add a section on UserLearners and tests
...
Also adapt module layout to latest version.
2017-03-14 12:11:23 +01:00
Willi Richert
6e3ee03a9f
Add slice_view member to NDArraView
2017-03-14 12:11:22 +01:00
Willi Richert
4dbc7b82e6
Add typemap for NDArrayView
2017-03-14 12:11:20 +01:00
Willi Richert
02c5d7c43f
NDArrayView: make shape a property, add slice_view(); Value: make data a property
2017-03-14 12:11:14 +01:00
Willi Richert
fa85c142eb
Catch bad initialization of Value
2017-03-14 12:10:42 +01:00
Willi Richert
9451e19d76
Provide as_numpy switch similar to UserFunction
2017-03-14 12:10:41 +01:00
Willi Richert
3aa8476608
Accept NDArrayView in Value.create()
2017-03-14 12:10:39 +01:00
Willi Richert
d84881b31b
Autopep + unCamelCasing
2017-03-14 12:10:38 +01:00
Project Philly
de3679a741
Integrate wilrich/debugger into master
2017-03-14 03:55:17 -07:00