alexhiggins732

Results 11 comments of alexhiggins732

+1 for docker. I would think there are open source builds and/or ready made containers read to pull for most of the servers. More can easily be created for those...

> Of course, crowd sourcing the analysis work would be a big help. If everyone reading this spent just 30 minutes to pick a random file and compare [the Lucene.NET...

Didn't realize Lucene was on [version 9.1](https://github.com/apache/lucene/releases/tag/releases%2Flucene%2F9.1.0) already. This is just a beta version of 4.8,which was released in on Apr 27, 2014, nearly 8 years ago. Looking at the...

PR #94 upgrades to .Net 6? Does that address this issue so it can be closed?

An 08/26/2021 update from Microsoft shows VSTO is a legacy product that only works with legacy Net 4.X. All frameworks after including `Net. Standard 2.1` and the `Net. 5.0` are...

I am currently in this area of code in PR #95 and not sure what else can be done here. We are already capturing the web assembly error message as...

Hi @willhausman! Your response here has motivated me to get involved with this repo because it does appear in fact that Microsoft is not internally assigning resources to support wasmtime...

> > I am porting the Keras [Actor Critic Method](https://keras.io/examples/rl/actor_critic_cartpole/#visualizations) to Tensforflow.net and when I attempt to calculate the gradients it returns null. > > Did you find any solution?...

> I'm having the same problem here. Did you find any solution? No. And no response from the maintainers. Not encouraging.

The original tensorflow code in python is: ``` loss_value = sum(actor_losses) + sum(critic_losses) grads = tape.gradient(loss_value, model.trainable_variables) optimizer.apply_gradients(zip(grads, model.trainable_variables)) ``` The Keras [Actor Critic](https://keras.io/examples/rl/actor_critic_cartpole/#visualizations) does not return null. What is...