forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
How do I Adapt models in Python
Chris Basoglu edited this page Apr 6, 2017
·
3 revisions
Read and modify the training weights from Python
from cntk import *
p=parameter(5, init=glorot_uniform())
p.value
>>>result: array([-0.7146188 , 0.59619093, 0.95851505, 0.29351783, 0.13692594], dtype=float32)
p.value = np.ones(5)
- Home
- What's new
- Breaking changes
- CNTK installation
- Python API / Docs
- FAQ
- How do I...
- Troubleshoot CNTK
Getting Started
Additional Documentation
How to use CNTK
Using CNTK Models in Your Code
Advanced topics
- BrainScript via command line
- Top-level commands
- Working with sequences
- Plot Command
- ConvertDBN Command
- Baseline Metrics
Licenses
Source Code & Development