zhongkaifu / Seq2SeqSharp

Seq2SeqSharp is a tensor based fast & flexible deep neural network framework written by .NET (C#). It has many highlighted features, such as automatic differentiation, different network types (Transformer, LSTM, BiLSTM and so on), multi-GPUs supported, cross-platforms (Windows, Linux, x86, x64, ARM), multimodal model for text and images and so on.
Other
193 stars 38 forks source link

No requirement.txt in this repo #69

Closed KangYuan1233 closed 1 year ago

KangYuan1233 commented 1 year ago

Describe the bug I was trying to build the dockerfile from the hugging face, but there is not requirement.txt in this repo, where can I find it

zhongkaifu commented 1 year ago

@KangYuan1233

Seq2SeqSharp doesn't depend on Python package, and it's built by C#, so it doesn't need to have requirement.txt file. You could create an empty requirment.txt file if Docker system needs it.

KangYuan1233 commented 1 year ago

Thanks.