commit
d114d8976a
@ -0,0 +1,69 @@
|
||||
# Release v0.9.0
|
||||
|
||||
## New Features:
|
||||
|
||||
* New Layers
|
||||
* bilinear interpolation layer.
|
||||
* spatial pyramid-pool layer.
|
||||
* de-convolution layer.
|
||||
* maxout layer.
|
||||
* Support rectangle padding, stride, window and input for Pooling Operation.
|
||||
* Add —job=time in trainer, which can be used to print time info without compiler option -WITH_TIMER=ON.
|
||||
* Expose cost_weight/nce_layer in `trainer_config_helpers`
|
||||
* Add FAQ, concepts, h-rnn docs.
|
||||
* Add Bidi-LSTM and DB-LSTM to quick start demo @alvations
|
||||
* Add usage track scripts.
|
||||
|
||||
## Improvements
|
||||
|
||||
* Add Travis-CI for Mac OS X. Enable swig unittest in Travis-CI. Skip Travis-CI when only docs are changed.
|
||||
* Add code coverage tools.
|
||||
* Refine convolution layer to speedup and reduce GPU memory.
|
||||
* Speed up PyDataProvider2
|
||||
* Add ubuntu deb package build scripts.
|
||||
* Make Paddle use git-flow branching model.
|
||||
* PServer support no parameter blocks.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
* add zlib link to py_paddle
|
||||
* add input sparse data check for sparse layer at runtime
|
||||
* Bug fix for sparse matrix multiplication
|
||||
* Fix floating-point overflow problem of tanh
|
||||
* Fix some nvcc compile options
|
||||
* Fix a bug in yield dictionary in DataProvider
|
||||
* Fix SRL hang when exit.
|
||||
|
||||
# Release v0.8.0beta.1
|
||||
New features:
|
||||
|
||||
* Mac OSX is supported by source code. #138
|
||||
* Both GPU and CPU versions of PaddlePaddle are supported.
|
||||
|
||||
* Support CUDA 8.0
|
||||
|
||||
* Enhance `PyDataProvider2`
|
||||
* Add dictionary yield format. `PyDataProvider2` can yield a dictionary with key is data_layer's name, value is features.
|
||||
* Add `min_pool_size` to control memory pool in provider.
|
||||
|
||||
* Add `deb` install package & docker image for no_avx machines.
|
||||
* Especially for cloud computing and virtual machines
|
||||
|
||||
* Automatically disable `avx` instructions in cmake when machine's CPU don't support `avx` instructions.
|
||||
|
||||
* Add Parallel NN api in trainer_config_helpers.
|
||||
|
||||
* Add `travis ci` for Github
|
||||
|
||||
Bug fixes:
|
||||
|
||||
* Several bugs in trainer_config_helpers. Also complete the unittest for trainer_config_helpers
|
||||
* Check if PaddlePaddle is installed when unittest.
|
||||
* Fix bugs in GTX series GPU
|
||||
* Fix bug in MultinomialSampler
|
||||
|
||||
Also more documentation was written since last release.
|
||||
|
||||
# Release v0.8.0beta.0
|
||||
|
||||
PaddlePaddle v0.8.0beta.0 release. The install package is not stable yet and it's a pre-release version.
|
@ -0,0 +1,9 @@
|
||||
This dataset consists of electronics product reviews associated with
|
||||
binary labels (positive/negative) for sentiment classification.
|
||||
|
||||
The preprocessed data can be downloaded by script `get_data.sh`.
|
||||
The data was derived from reviews_Electronics_5.json.gz at
|
||||
|
||||
http://snap.stanford.edu/data/amazon/productGraph/categoryFiles/reviews_Electronics_5.json.gz
|
||||
|
||||
If you want to process the raw data, you can use the script `proc_from_raw_data/get_data.sh`.
|
@ -1 +0,0 @@
|
||||
./data/pred.txt
|
@ -1,2 +0,0 @@
|
||||
the device is cute , but that 's just about all that 's good. the specs are what you 'd expect : it 's a wifi mic , with some noise filter options. the app has the option to upload your baby 's name and photo , which is a cutesy touch. but the app is otherwise unstable and useless unless you upgrade for $ 60 / year.set up involves downloading the app , turning on the mic , switching your phone to the wifi network of the mic , telling the app your wifi settings , switching your wifi back to your home router. the app is then directly connected to your mic.the app is adware ! the main screen says " cry notifications on / off : upgrade to evoz premium and receive a text message of email when your baby is crying " .but the adware points out an important limitation , this monitor is only intended to be used from your home network. if you want to access it remotely , get a webcam. this app would make a lot more sense of the premium features were included with the hardware .
|
||||
don 't be fooled by my one star rating. if there was a zero , i would have selected it. this product was a waste of my money.it has never worked like the company said it supposed to. i only have one device , an iphone 4gs. after charging the the iphone mid way , the i.sound portable power max 16,000 mah is completely drained. the led light no longer lit up. when plugging the isound portable power max into a wall outlet to charge , it would charge for about 20-30 minutes and then all four battery led indicator lit up showing a full charge. i would leave it on to charge for the full 8 hours or more but each time with the same result upon using. don 't buy this thing. put your money to good use elsewhere .
|
@ -0,0 +1,14 @@
|
||||
ABOUT
|
||||
=======
|
||||
|
||||
PaddlPaddle is an easy-to-use, efficient, flexible and scalable deep learning platform,
|
||||
which is originally developed by Baidu scientists and engineers for the purpose of applying deep learning to many products at Baidu.
|
||||
|
||||
PaddlePaddle is now open source but far from complete, which is intended to be built upon, improved, scaled, and extended.
|
||||
We hope to build an active open source community both by providing feedback and by actively contributing to the source code.
|
||||
|
||||
|
||||
Credits
|
||||
--------
|
||||
|
||||
We owe many thanks to `all contributors and developers <https://github.com/PaddlePaddle/Paddle/blob/develop/authors>`_ of PaddlePaddle!
|
@ -1,7 +0,0 @@
|
||||
Algorithm Tutorial
|
||||
==================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
rnn/rnn.rst
|
@ -1 +0,0 @@
|
||||
../../demo/sentiment_analysis/bi_lstm.jpg
|
@ -1 +0,0 @@
|
||||
../../demo/text_generation/encoder-decoder-attention-model.png
|
@ -1,5 +1,5 @@
|
||||
DataProvider Introduction
|
||||
=========================
|
||||
Introduction
|
||||
==============
|
||||
DataProvider is a module that loads training or testing data into cpu or gpu
|
||||
memory for the following triaining or testing process.
|
||||
|
@ -1,5 +1,5 @@
|
||||
How to use PyDataProvider2
|
||||
==========================
|
||||
PyDataProvider2
|
||||
=================
|
||||
|
||||
We highly recommand users to use PyDataProvider2 to provide training or testing
|
||||
data to PaddlePaddle. The user only needs to focus on how to read a single
|
@ -0,0 +1,36 @@
|
||||
API
|
||||
====
|
||||
|
||||
DataProvider API
|
||||
----------------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
data_provider/index.rst
|
||||
data_provider/pydataprovider2.rst
|
||||
|
||||
Model Config API
|
||||
----------------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
trainer_config_helpers/index.rst
|
||||
trainer_config_helpers/optimizers.rst
|
||||
trainer_config_helpers/data_sources.rst
|
||||
trainer_config_helpers/layers.rst
|
||||
trainer_config_helpers/activations.rst
|
||||
trainer_config_helpers/poolings.rst
|
||||
trainer_config_helpers/networks.rst
|
||||
trainer_config_helpers/evaluators.rst
|
||||
trainer_config_helpers/attrs.rst
|
||||
|
||||
|
||||
Applications API
|
||||
----------------
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
predict/swig_py_paddle_en.rst
|
@ -1,5 +1,5 @@
|
||||
Python Prediction API
|
||||
=====================
|
||||
Python Prediction
|
||||
==================
|
||||
|
||||
PaddlePaddle offers a set of clean prediction interfaces for python with the help of
|
||||
SWIG. The main steps of predict values in python are:
|
@ -0,0 +1,5 @@
|
||||
Parameter Attributes
|
||||
=======================
|
||||
|
||||
.. automodule:: paddle.trainer_config_helpers.attrs
|
||||
:members:
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue