4
4
<TargetFrameworks >netstandard2.0;net6.0</TargetFrameworks >
5
5
<AssemblyName >Tensorflow.Binding</AssemblyName >
6
6
<RootNamespace >Tensorflow</RootNamespace >
7
- <TargetTensorFlow >2.10 .0</TargetTensorFlow >
8
- <Version >0.110.1 </Version >
7
+ <TargetTensorFlow >2.11 .0</TargetTensorFlow >
8
+ <Version >0.110.2 </Version >
9
9
<LangVersion >10.0</LangVersion >
10
10
<Nullable >enable</Nullable >
11
- <Authors >Haiping Chen, Meinrad Recheis, Eli Belash </Authors >
11
+ <Authors >Haiping Chen, Eli Belash, Yaohui Liu, Meinrad Recheis </Authors >
12
12
<Company >SciSharp STACK</Company >
13
13
<GeneratePackageOnBuild >False</GeneratePackageOnBuild >
14
14
<Copyright >Apache 2.0, Haiping Chen $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright >
@@ -23,7 +23,8 @@ https://tensorflownet.readthedocs.io</Description>
23
23
<AssemblyVersion >0.110.1.0</AssemblyVersion >
24
24
<PackageReleaseNotes >
25
25
tf.net 0.110.x and above are based on tensorflow native 2.11.0
26
- * RNN, LSTM works.
26
+ * Support RNN, LSTM model.
27
+ * Support Transformer model.
27
28
28
29
tf.net 0.100.x and above are based on tensorflow native 2.10.0
29
30
@@ -42,12 +43,11 @@ https://tensorflownet.readthedocs.io</Description>
42
43
tf.net 0.10x.x aligns with TensorFlow v2.10.x native library.
43
44
tf.net 0.11x.x aligns with TensorFlow v2.11.x native library.
44
45
</PackageReleaseNotes >
45
- <FileVersion >0.110.1 .0</FileVersion >
46
+ <FileVersion >0.110.2 .0</FileVersion >
46
47
<PackageLicenseFile >LICENSE</PackageLicenseFile >
47
48
<PackageRequireLicenseAcceptance >true</PackageRequireLicenseAcceptance >
48
49
<PackageOutputPath >packages</PackageOutputPath>
49
50
<SignAssembly >true</SignAssembly >
50
- <AssemblyOriginatorKeyFile >Open.snk</AssemblyOriginatorKeyFile >
51
51
<Platforms >AnyCPU;x64</Platforms >
52
52
<PackageId >TensorFlow.NET</PackageId >
53
53
<Configurations >Debug;Release;GPU</Configurations >
@@ -88,6 +88,66 @@ https://tensorflownet.readthedocs.io</Description>
88
88
<DefineConstants />
89
89
</PropertyGroup >
90
90
91
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'" >
92
+ <WarningLevel >1</WarningLevel >
93
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
94
+ </PropertyGroup >
95
+
96
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|x64'" >
97
+ <WarningLevel >1</WarningLevel >
98
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
99
+ </PropertyGroup >
100
+
101
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'" >
102
+ <WarningLevel >1</WarningLevel >
103
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
104
+ </PropertyGroup >
105
+
106
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|x64'" >
107
+ <WarningLevel >1</WarningLevel >
108
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
109
+ </PropertyGroup >
110
+
111
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|netstandard2.0|AnyCPU'" >
112
+ <WarningLevel >1</WarningLevel >
113
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
114
+ </PropertyGroup >
115
+
116
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|netstandard2.0|x64'" >
117
+ <WarningLevel >1</WarningLevel >
118
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
119
+ </PropertyGroup >
120
+
121
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'" >
122
+ <WarningLevel >1</WarningLevel >
123
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
124
+ </PropertyGroup >
125
+
126
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|x64'" >
127
+ <WarningLevel >1</WarningLevel >
128
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
129
+ </PropertyGroup >
130
+
131
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'" >
132
+ <WarningLevel >1</WarningLevel >
133
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
134
+ </PropertyGroup >
135
+
136
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|x64'" >
137
+ <WarningLevel >1</WarningLevel >
138
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
139
+ </PropertyGroup >
140
+
141
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|net6.0|AnyCPU'" >
142
+ <WarningLevel >1</WarningLevel >
143
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
144
+ </PropertyGroup >
145
+
146
+ <PropertyGroup Condition =" '$(Configuration)|$(TargetFramework)|$(Platform)'=='GPU|net6.0|x64'" >
147
+ <WarningLevel >1</WarningLevel >
148
+ <NoWarn >$(NoWarn),1570,1573,1591,1712,8603,8604,8625,CS0612</NoWarn >
149
+ </PropertyGroup >
150
+
91
151
<ItemGroup >
92
152
<Compile Remove =" Distribute\**" />
93
153
<Compile Remove =" Models\**" />
0 commit comments