Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2023 #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

2023 #11

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .github/workflows/tfaddons_github.yml

This file was deleted.

23 changes: 8 additions & 15 deletions .github/workflows/tfaddons_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,9 @@ jobs:
fail-fast: false
matrix:
config:
- { os: windows-latest, tf: '2.0.0', tensorflow-addons: '0.10.0'}
- { os: macOS-latest, tf: '2.0.0', tensorflow-addons: '0.10.0'}
- { os: ubuntu-16.04, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest", tf: '2.0.0', tensorflow-addons: '0.10.0'}
- { os: windows-latest, tf: '2.1.0', tensorflow-addons: '0.10.0'}
- { os: macOS-latest, tf: '2.1.0', tensorflow-addons: '0.10.0'}
- { os: ubuntu-16.04, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest", tf: '2.1.0', tensorflow-addons: '0.10.0'}
- { os: windows-latest, tf: '2.2.0', tensorflow-addons: '0.10.0'}
- { os: macOS-latest, tf: '2.2.0', tensorflow-addons: '0.10.0'}
- { os: ubuntu-16.04, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest", tf: '2.2.0', tensorflow-addons: '0.10.0'}

- { os: windows-latest, tf: '2.12.0', tensorflow-addons: '0.20.0'}
- { os: macOS-latest, tf: '2.12.0', tensorflow-addons: '0.20.0'}
- { os: ubuntu-latest, cran: "https://demo.rstudiopm.com/all/__linux__/xenial/latest", tf: '2.12.0', tensorflow-addons: '0.20.0'}
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
TF_VERSION: ${{ matrix.config.tf }}
Expand All @@ -31,12 +24,12 @@ jobs:
CRAN: ${{ matrix.config.cran }}

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2

- uses: r-lib/actions/setup-r@master
- uses: r-lib/actions/setup-r@v2
with:
r-version: '4.1.0'
- uses: r-lib/actions/setup-pandoc@master
r-version: '4.2.1'
- uses: r-lib/actions/setup-pandoc@v2

- name: Install deps
run: |
Expand All @@ -48,7 +41,7 @@ jobs:
run: |
Rscript -e "install.packages('reticulate')"
Rscript -e "try(reticulate::install_miniconda())"
Rscript -e "reticulate::conda_create('r-reticulate', packages = 'python==3.6.10')"
Rscript -e "reticulate::conda_create('r-reticulate', packages = 'python==3.10')"
- name: Install TensorFlow
run: |
Rscript -e "remotes::install_local()"
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: tfaddons
Type: Package
Title: Interface to 'TensorFlow SIG Addons'
Version: 0.10.3
Version: 0.10.4
Authors@R: c(
person("Turgut", "Abdullayev", role = c("aut", "cre"),
email = "turqut.a.314@gmail.com")
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,11 @@ The `tfaddons` package provides R wrappers to [TensorFlow Addons](https://www.te

__TensorFlow Addons__ is a repository of contributions that conform to well-established API patterns, but implement new functionality not available in core TensorFlow. TensorFlow natively supports a large number of operators, layers, metrics, losses, and optimizers. However, in a fast moving field like ML, there are many interesting new developments that cannot be integrated into core TensorFlow (because their broad applicability is not yet clear, or it is mostly used by a smaller subset of the community).

[![Actions Status](https://github.com/henry090/tfaddons/workflows/TFA_stable/badge.svg)](https://github.com/henry090/tfaddons)
[![Actions Status](https://github.com/henry090/tfaddons/workflows/TFA/badge.svg)](https://github.com/henry090/tfaddons)
[![Actions Status](https://github.com/eagerai/tfaddons/workflows/TFA_stable/badge.svg)](https://github.com/eagerai/tfaddons)
[![CRAN](https://www.r-pkg.org/badges/version/tfaddons?color=darkgreen)](https://cran.r-project.org/package=tfaddons)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![Last month downloads](http://cranlogs.r-pkg.org/badges/last-month/tfaddons?color=green)](https://cran.r-project.org/package=tfaddons)
[![Last commit](https://img.shields.io/github/last-commit/henry090/tfaddons.svg)](https://github.com/henry090/tfaddons/commits/master)
[![Last commit](https://img.shields.io/github/last-commit/eagerai/tfaddons.svg)](https://github.com/eagerai/tfaddons/commits/master)

![](https://img.shields.io/docker/cloud/build/turqut314/tfaddons?style=plastic)

<img src="images/tfaddons.png" width=200 align=right style="margin-left: 15px;" alt="TF-addons"/>

Expand All @@ -39,7 +36,7 @@ Requirements:
The dev version:

```
devtools::install_github('henry090/tfaddons')
devtools::install_github('eagerai/tfaddons')
```

Later, you need to install the python module *tensorflow-addons*:
Expand Down