Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Sep 21, 2021
1 parent e86cf76 commit bd5eed8
Show file tree
Hide file tree
Showing 5 changed files with 205 additions and 80 deletions.
13 changes: 13 additions & 0 deletions call_for_contributions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ This is a constantly-updated list of code examples that we're currently interest

--

## Structured data examples featuring Keras Preprocessing Layers (KPL)

E.g. feature hashing, feature indexing with handling of missing values,
mixing numerical, categorical, and text features, doing feature engineering with KPL, etc.

--

## Transformer model for MIDI music generation

[Reference TF/Keras implementation](https://github.com/jason9693/MusicTransformer-tensorflow2.0)
Expand Down Expand Up @@ -79,3 +86,9 @@ The dataset should have at least 50k samples and there should be at least a doze

--

## Customer lifetime value prediction

--



2 changes: 1 addition & 1 deletion examples/vision/ipynb/zero_dce.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"curve estimation is inspired by curves adjustment used in photo editing software such as\n",
"Adobe Photoshop where users can adjust points throughout an image\u2019s tonal range.\n",
"\n",
"Zero-DCE is appealing because of its relaxed assumptions with regard tp reference images:\n",
"Zero-DCE is appealing because of its relaxed assumptions with regard to reference images:\n",
"it does not require any input/output image pairs during training.\n",
"This is achieved through a set of carefully formulated non-reference loss functions,\n",
"which implicitly measure the enhancement quality and guide the training of the network.\n",
Expand Down
3 changes: 1 addition & 2 deletions examples/vision/md/zero_dce.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Zero-DCE for low-light image enhancement

**Author:** [Soumik Rakshit](http://github.com/soumik12345)<br>
Expand Down Expand Up @@ -27,7 +26,7 @@ the range of the enhanced image and preserves the contrast of neighboring pixels
curve estimation is inspired by curves adjustment used in photo editing software such as
Adobe Photoshop where users can adjust points throughout an image’s tonal range.

Zero-DCE is appealing because of its relaxed assumptions with regard tp reference images:
Zero-DCE is appealing because of its relaxed assumptions with regard to reference images:
it does not require any input/output image pairs during training.
This is achieved through a set of carefully formulated non-reference loss functions,
which implicitly measure the enhancement quality and guide the training of the network.
Expand Down
2 changes: 1 addition & 1 deletion examples/vision/zero_dce.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
curve estimation is inspired by curves adjustment used in photo editing software such as
Adobe Photoshop where users can adjust points throughout an image’s tonal range.
Zero-DCE is appealing because of its relaxed assumptions with regard tp reference images:
Zero-DCE is appealing because of its relaxed assumptions with regard to reference images:
it does not require any input/output image pairs during training.
This is achieved through a set of carefully formulated non-reference loss functions,
which implicitly measure the enhancement quality and guide the training of the network.
Expand Down
Loading

0 comments on commit bd5eed8

Please sign in to comment.