[Python-modules-commits] [python-brainstorm] 05/08: added brainstorm.egg-info

Daniel Stender danstender-guest at moszumanska.debian.org
Sun Mar 13 16:12:12 UTC 2016


This is an automated email from the git hooks/post-receive script.

danstender-guest pushed a commit to branch master
in repository python-brainstorm.

commit 44f3d6818cb4ca2ac5e5e69f37eeb63dff481992
Author: Daniel Stender <stender at debian.org>
Date:   Sun Mar 13 16:49:10 2016 +0100

    added brainstorm.egg-info
---
 brainstorm.egg-info/PKG-INFO             | 77 ++++++++++++++++++++++++++++++++
 brainstorm.egg-info/SOURCES.txt          | 72 +++++++++++++++++++++++++++++
 brainstorm.egg-info/dependency_links.txt |  1 +
 brainstorm.egg-info/requires.txt         | 27 +++++++++++
 brainstorm.egg-info/top_level.txt        |  1 +
 5 files changed, 178 insertions(+)

diff --git a/brainstorm.egg-info/PKG-INFO b/brainstorm.egg-info/PKG-INFO
new file mode 100644
index 0000000..a531831
--- /dev/null
+++ b/brainstorm.egg-info/PKG-INFO
@@ -0,0 +1,77 @@
+Metadata-Version: 1.1
+Name: brainstorm
+Version: 0.5
+Summary: Fast, flexible and fun neural networks.
+Home-page: https://github.com/IDSIA/brainstorm
+Author: The Swiss AI Lab IDSIA
+Author-email: mailstorm at googlemail.com
+License: MIT
+Description: 
+        Documentation
+        -------------
+        
+        The full documentation is at http://brainstorm.rtfd.org.
+        
+        
+        
+        History
+        -------
+        
+        0.5 (2015-12-01)
+        ++++++++++++++++
+        Changed Behaviour
+        """""""""""""""""
+        * examples now run on CPU by default
+        * added ``brainstorm.tools.shuffle_data`` and ``brainstorm.tools.split`` to help with data preparation
+        * ``SigmoidCE`` and ``SquaredDifference`` layers now outputs a loss for each dimension instead of summing over features.
+        * ``SquaredDifference`` layer does no longer scale by one half.
+        * Added a ``SquaredLoss`` layer that computes half the squared difference and
+          has an interface that is compatible with the ``SigmoidCE`` and ``SigmoidCE`` layers.
+        * Output `probabilities` renamed to `predictions` in ``SigmoidCE`` and ``SigmoidCE`` layers.
+        
+        New Features
+        """"""""""""
+        * added a `use_conv` option to ``brainstorm.tools.create_net_from_spec``
+        * added `criterion` option to ``brainstorm.hooks.EarlyStopper`` hook
+        * added ``brainstorm.tools.get_network_info`` function that returns information
+          about the network as a string
+        * added ``brainstorm.tools.extract`` function that applies a network to some
+          data and saves a set of requested buffers.
+        * ``brainstorm.layers.mask`` layer now supports masking individual features
+        * added ``brainstorm.hooks.StopAfterThresholdReached`` hook
+        
+        Improvements
+        """"""""""""
+        * EarlyStopper now works for any timescale and interval
+        * Recurrent, Lstm, Clockwork, and ClockworkLstm layers now accept inputs of
+          arbitrary shape by implicitly flattening them.
+        * several fixes to make building the docs easier
+        * some performance improvements of NumpyHandler operations ``binarize_t`` and ``index_m_by_v``
+        * sped up tests
+        * several improvements to installation scripts
+        
+        Bugfixes
+        """"""""
+        * fixed `sqrt` operation for ``PyCudaHandler``. This should fix problems with BatchNormalization on GPU.
+        * fixed a bug for task_type='regression' in ``brainstorm.tools.get_in_out_layers``
+          and ``brainstorm.tools.create_net_from_spec``
+        * removed defunct name argument from input layer
+        * fixed a crash when applying ``brainstorm.hooks.SaveBestNetwork`` to `rolling_training` loss
+        * various minor fixes of the ``brainstorm.hooks.BokehVisualizer``
+        * fixed a problem with ``sum_t`` operation in ``brainstorm.handlers.PyCudaHandler``
+        * fixed a blocksize problem in convolutional and pooling operations in ``brainstorm.handlers.PyCudaHandler``
+        
+        
+        0.5b0 (2015-10-25)
+        ++++++++++++++++++
+        * First release on PyPI.
+        
+Platform: UNKNOWN
+Classifier: Development Status :: 4 - Beta
+Classifier: Intended Audience :: Developers
+Classifier: Intended Audience :: Science/Research
+Classifier: Intended Audience :: Education
+Classifier: License :: OSI Approved :: MIT License
+Classifier: Natural Language :: English
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3.3
diff --git a/brainstorm.egg-info/SOURCES.txt b/brainstorm.egg-info/SOURCES.txt
new file mode 100644
index 0000000..1671368
--- /dev/null
+++ b/brainstorm.egg-info/SOURCES.txt
@@ -0,0 +1,72 @@
+CONTRIBUTING.rst
+HISTORY.rst
+LICENSE
+MANIFEST.in
+README.md
+setup.cfg
+setup.py
+brainstorm/__about__.py
+brainstorm/__init__.py
+brainstorm/all.py
+brainstorm/data_iterators.py
+brainstorm/describable.py
+brainstorm/hooks.py
+brainstorm/initializers.py
+brainstorm/optional.py
+brainstorm/randomness.py
+brainstorm/scorers.py
+brainstorm/tools.py
+brainstorm/utils.py
+brainstorm/value_modifiers.py
+brainstorm.egg-info/PKG-INFO
+brainstorm.egg-info/SOURCES.txt
+brainstorm.egg-info/dependency_links.txt
+brainstorm.egg-info/requires.txt
+brainstorm.egg-info/top_level.txt
+brainstorm/handlers/__init__.py
+brainstorm/handlers/_cpuop.c
+brainstorm/handlers/_cpuop.pyx
+brainstorm/handlers/base_handler.py
+brainstorm/handlers/debug_handler.py
+brainstorm/handlers/numpy_handler.py
+brainstorm/handlers/pycuda_handler.py
+brainstorm/layers/__init__.py
+brainstorm/layers/base_layer.py
+brainstorm/layers/batch_normalization_layer.py
+brainstorm/layers/binomial_cross_entropy_layer.py
+brainstorm/layers/clockwork_layer.py
+brainstorm/layers/clockwork_lstm_layer.py
+brainstorm/layers/convolution_layer_2d.py
+brainstorm/layers/deltas_scaling_layer.py
+brainstorm/layers/dropout_layer.py
+brainstorm/layers/elementwise_layer.py
+brainstorm/layers/fully_connected_layer.py
+brainstorm/layers/highway_layer.py
+brainstorm/layers/input_layer.py
+brainstorm/layers/l1_decay.py
+brainstorm/layers/l2_decay.py
+brainstorm/layers/loss_layer.py
+brainstorm/layers/lstm_layer.py
+brainstorm/layers/mask_layer.py
+brainstorm/layers/merge_layer.py
+brainstorm/layers/noop_layer.py
+brainstorm/layers/pooling_layer_2d.py
+brainstorm/layers/recurrent_layer.py
+brainstorm/layers/sigmoid_ce_layer.py
+brainstorm/layers/softmax_ce_layer.py
+brainstorm/layers/squared_difference_layer.py
+brainstorm/layers/squared_error_layer.py
+brainstorm/structure/__init__.py
+brainstorm/structure/architecture.py
+brainstorm/structure/buffer_structure.py
+brainstorm/structure/buffer_views.py
+brainstorm/structure/buffers.py
+brainstorm/structure/construction.py
+brainstorm/structure/layout.py
+brainstorm/structure/network.py
+brainstorm/structure/view_references.py
+brainstorm/training/__init__.py
+brainstorm/training/schedules.py
+brainstorm/training/steppers.py
+brainstorm/training/trainer.py
+brainstorm/training/utils.py
\ No newline at end of file
diff --git a/brainstorm.egg-info/dependency_links.txt b/brainstorm.egg-info/dependency_links.txt
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/brainstorm.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
diff --git a/brainstorm.egg-info/requires.txt b/brainstorm.egg-info/requires.txt
new file mode 100644
index 0000000..4869f11
--- /dev/null
+++ b/brainstorm.egg-info/requires.txt
@@ -0,0 +1,27 @@
+cython
+h5py
+mock
+numpy>=1.8
+six
+
+[all]
+bokeh
+pygraphviz
+pytest
+mock
+pycuda>=2015.1.3
+scikit-cuda>=0.5.1
+
+[draw_net]
+pygraphviz
+
+[live_viz]
+bokeh
+
+[pycuda]
+pycuda>=2015.1.3
+scikit-cuda>=0.5.1
+
+[test]
+pytest
+mock
diff --git a/brainstorm.egg-info/top_level.txt b/brainstorm.egg-info/top_level.txt
new file mode 100644
index 0000000..6f111d6
--- /dev/null
+++ b/brainstorm.egg-info/top_level.txt
@@ -0,0 +1 @@
+brainstorm

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-brainstorm.git



More information about the Python-modules-commits mailing list