Skip to content

Releases: alibaba/pipcook

v1.3.0 Release

19 Dec 21:54
Compare
Choose a tag to compare
  • working on new macOS BigSur
  • bugfixes

Bump version to 1.2.0

04 Sep 11:43
9225b56
Compare
Choose a tag to compare
v1.2.0

Bump version to 1.2.0 (#551)

Bump version to 1.1.2

19 Aug 11:11
a68c06d
Compare
Choose a tag to compare
v1.1.2

Publish (#474)

Bump version to 1.1.1

18 Aug 03:08
9bfc70a
Compare
Choose a tag to compare
v1.1.1_

Update release to commit before publish (#464)

Bump version to 1.1.1

18 Aug 02:34
1fc8b76
Compare
Choose a tag to compare
v1.1.1

bump version to 1.1.1 (#463)

Release pipcook 1.0.5

30 Jul 05:55
ba65cd6
Compare
Choose a tag to compare
Publish v1.0.5 (#387)

- @pipcook/app@1.0.5
 - @pipcook/boa@1.0.5
 - @pipcook/pipcook-cli@1.0.5
 - @pipcook/pipcook-core@1.0.5
 - @pipcook/costa@1.0.5
 - @pipcook/daemon@1.0.5
 - @pipcook/pipboard@1.0.5
 - @pipcook/plugins-coco-data-access@1.0.5
 - @pipcook/plugins-csv-data-access@1.0.5
 - @pipcook/plugins-pascalvoc-data-access@1.0.5
 - @pipcook/plugins-textline-data-access@1.0.5
 - @pipcook/plugins-chinese-poem-data-collect@1.0.5
 - @pipcook/plugins-csv-data-collect@1.0.5
 - @pipcook/plugins-fasttext-data-collect@1.0.5
 - @pipcook/plugins-image-classification-data-collect@1.0.5
 - @pipcook/plugins-mnist-data-collect@1.0.5
 - @pipcook/plugins-object-detection-coco-data-collect@1.0.5
 - @pipcook/plugins-object-detection-pascalvoc-data-collect@1.0.5
 - @pipcook/plugins-image-data-process@1.0.5
 - @pipcook/plugins-bayesian-model-define@1.0.5
 - @pipcook/plugins-detectron-fasterrcnn-model-define@1.0.5
 - @pipcook/plugins-detectron-maskrcnn-model-define@1.0.5
 - @pipcook/plugins-fasttext-model-define@1.0.5
 - @pipcook/plugins-tensorflow-cycle-gan-model-define@1.0.5
 - @pipcook/plugins-tensorflow-mobilenet-model-define@1.0.5
 - @pipcook/plugins-tensorflow-resnet-model-define@1.0.5
 - @pipcook/plugins-tfjs-mobilenet-model-define@1.0.5
 - @pipcook/plugins-tfjs-simplecnn-model-define@1.0.5
 - @pipcook/plugins-tfjs-text-lstm-model-define@1.0.5
 - @pipcook/plugins-bayesian-model-evaluate@1.0.5
 - @pipcook/plugins-detectron-model-evaluate@1.0.5
 - @pipcook/plugins-fasttext-model-evaluate@1.0.5
 - @pipcook/plugins-image-classification-tensorflow-model-evaluate@1.0.5
 - @pipcook/plugins-image-classification-tfjs-model-evaluate@1.0.5
 - @pipcook/plugins-image-generation-tensorflow-model-evaluate@1.0.5
 - @pipcook/plugins-text-creation-tfjs-model-evaluate@1.0.5
 - @pipcook/plugins-tensorflow-model-load@1.0.5
 - @pipcook/plugins-bayesian-model-train@1.0.5
 - @pipcook/plugins-detectron-model-train@1.0.5
 - @pipcook/plugins-fasttext-model-train@1.0.5
 - @pipcook/plugins-image-classification-tensorflow-model-train@1.0.5
 - @pipcook/plugins-image-classification-tfjs-model-train@1.0.5
 - @pipcook/plugins-image-generation-tensorflow-model-train@1.0.5
 - @pipcook/plugins-text-creation-tfjs-model-train@1.0.5
 - @pipcook/sdk@1.0.5

publish the pipcook v1.0.4

28 Jul 06:44
3ced0bb
Compare
Choose a tag to compare
pipboard: fix the lint crash by eslint-plugin-react (#375)

The eslint-plugin-react@7.20.4 introduced a crash bug when linting a source with anonymous function
with es module.

This PR removes all related anonymous functions to hotfix the problem.

See https://github.com/yannickcr/eslint-plugin-react/issues/2728

Release pipcook 1.0.3

09 Jul 08:49
dbeac3b
Compare
Choose a tag to compare
v1.0.3

boa: fix compile error when path with space (#322)

Update costa version to 1.0.1

07 Jul 02:13
8ec3e5c
Compare
Choose a tag to compare
v1.0.1

bump costa version to 1.0.1

publish the pipcook v1.0.0

29 Jun 08:06
Compare
Choose a tag to compare

The following is what exactly we want Pipcook v1 looks like:

Screen Shot 2020-04-05 at 2 49 10 AM

We will introduce a new and unified layer for end-user that's so-called "Pipcook ML App", its goal is to simplify the developing machine learning applications, for more details you can go #33.

Now Pipcook is to be runtime for building ML applications, rather than a Node.js library. So we also make original pipcook-core to be a Daemon Process, it's used to operate plugins, and manage Pipelines via a new declarative language Pipeline IR.

To make sure what every plugin could run in more safety and powerful, Pipcook v1 is also to add the Plugin Runtime, which should be a standalone process/thread (via configuration), and there are the followings for plugin developers:

  • ML API: it's the low-level machine learning APIs.
  • Builtin Tensorflow.js library.
  • Python APIs via Node.js lets you call other Python functions in JavaScript seamlessly.