- 20190802
- Released to CRAN at 15:20
- 20190802
- Returned from CRAN with notes
- Fix single quotes in DESCRIPTION
- Change
\dontrun
by\donttest
where applicable - Get rid of a warning message
- Replace print/cat by message/warning
- Add
\value
to all functions with@return
- Added
cran-comments.md
- July 31 2019
- Submitted to CRAN at 15:30. Received. Waiting manual inspection.
- Test with
appveyor.yml
- Created repository r-appveyor at Oil Gains Analytics GitHub account.
appveyor
scripts now are called from this repo. Original source is at krlmlr/r-appveyor - Test with
.travis.yml
- Copy three functions from reticulate to customize it and be able to specify the conda channel. Using
pytorch
channel inreticulate.R
. - Specify torch-cpu and torchvision-cpu in
install.R
- Move out vignettes to reduce testing time. Will ship separately using
rsuite
.
- July 26 2019
- Vignettes temporarily moved to inst/vignettes to reduce build time of package
- Add function remainder for tensors. Equivalent to
a %% b
- Change unit tests in
test_generics.R
to use new functionexpect_true_tensor
- Enhance functions
any
andall
. Add examples - Add roxygen documentation to two tensor operations
- Change download folders for MNIST datasets under project folder
- July 24 2019
- Change MNIST download folder to ~/raw_data instead of inst/
- On vignette
mnist_fashion_inference.Rmd
: - Add dropout class to reduce overfitting
- Add a training loop for the dropout class
- Added/remove experimental code to replicate the Python function to visualize the image along with the bar plot. Unsuccessful because R (image) and Python image (plt.imshow) functions use different array dimensions.
- July 22 2019
- Added vignette
mnist_fashion_inference.Rmd
. - Added vignette
simple_linear_regression.Rmd
. - Add generic ! (logical not)
- Fix generics any, all using as_tensor() instead of tensor()
- July 22 2019
- New vignette using PyTorch builtin functions and classes. Rainfall dataset:
linear_regression_rainfall_builtins.Rmd
- Add comments to
linear_regression_rainfall.Rmd
- July 22 2019
- Fix version numbers. Missing the number one.
- July 22 2019
- Refresh pkgdown
- Export html files for pkgdown. Modify .gitignore.
- July 22 2019
- Add pkgdown website
- July 22 2019
- Add vignette
png_images_minist_digits.Rmd
. It uses PBG images in a local folder instead of downloading MNIST idx format images. - Add logical operators to README.
- July 22 2019
- Add vignette
idx_images_minist_digits.Rmd
- July 21 2019
- New vignette
two_layer_neural_network.Rmd
. Had some problem with the tensor types. Fixed by using shorter generic version of the tensor gradient operation.
- July 21 2019
- Add two more vignettes.
- Get rid of a warning on roxygen documentation
- Remove old code from generics.R
- July 21 2019
- Adding first example as a vignette.
- import Python torch with
py_run_string("import torch")
- July 21 2019
- alpha version
- first release to Github
- package coming after publication of
rpystats-apollo11
- still examples to be added
- Added a
NEWS.md
file to track changes to the package.