SciSharp / TensorFlow.NET

.NET Standard bindings for Google's TensorFlow for developing, training and deploying Machine Learning models in C# and F#.
https://scisharp.github.io/tensorflow-net-docs
Apache License 2.0
3.17k stars 507 forks source link

[Question]: UpSampling1D method #1115

Closed kojack14 closed 1 year ago

kojack14 commented 1 year ago

Description

I need the UpSampling1D method for my project, is there this implementation in the tensorflow.net package?

Alternatives

No response

Wanglongzhi2001 commented 1 year ago

Sorry, there was no implementation before. But I've just implemented it and commit a PR, and in the next version you'll be able to use tf.keras.layers.UpSampling1D directly. ^_^

kojack14 commented 1 year ago

thanks. I am doing a project where it is necessary to implement an autoencoder, so i need this method or Conv1dTranspose to do this.

Wanglongzhi2001 commented 1 year ago

The new release version has been released, you can update your TensorFlow.NET and TensorFlow.Keras version to use UpSampling1D.