Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
135 views

I'm trying to implement a framework that manages RNN networks with an arbitrary number of layers (it's all part of a library I'm building based on jax/equinox), the problem is that I can't find an ...
lifera's user avatar
  • 11
1 vote
1 answer
385 views

I have the following training pipeline in JAX and Equinox. I want to pass a batch index to the loss function in order to apply different logic depending on index. Without batch index training loop ...
Joseph Kirtman's user avatar
0 votes
1 answer
69 views

I tried to add Apache Camel support in an Eclipse RCP application. With the new Eclipse, I can also add maven repositories in the target platform file, so that is what I did. My target platform ...
gdany's user avatar
  • 104
3 votes
1 answer
897 views

I'm new to Equinox and JAX but wanted to use them to simulate a dynamical system. But when I pass my system model as an Equinox module to jax.lax.scan I get the unhashable type error in the title. I ...
Bill's user avatar
  • 11.8k
0 votes
1 answer
74 views

I have an Eclipse E4 RCP product, which used to be exportable using Eclipse 4.29. The export worked just fine for multiple platforms (usually gtk.linux.x86_64 and win32.win32.x86_64). I have a freshly ...
Stefan's user avatar
  • 4,705
1 vote
1 answer
611 views

https://docs.kidger.site/equinox/api/nn/mlp/#equinox.nn.MLP The only way I was able to use MLP is like this import jax import equinox as eqx import numpy as np jax.vmap(eqx.nn.MLP(in_size=12, out_size=...
safetyduck's user avatar
  • 6,910
1 vote
1 answer
2k views

I have a setup where I need to generate some random number that is consumed by vmap and then lax.scan later on: def generate_random(key: Array, upper_bound: int, lower_bound: int) -> int: ... ...
neel g's user avatar
  • 1,257
1 vote
1 answer
612 views

I am trying to implement logistic regression using equinox and optax libraries, with the support of JAX. While training the model, the loss is not decreasing over time,and model is not learning. ...
prahasanam_boi's user avatar
2 votes
2 answers
543 views

We have KARAF based OSGI application. We have 100 bundles which is part of a feature.xml , when we install this feature there is one particular bundle which is always in resolved state we have to ...
invincible's user avatar
0 votes
1 answer
378 views

So I have this OSGi project built with equinox with this gradle structure: > Task :projects ------------------------------------------------------------ Root project 'project' ---------------------...
skrenato's user avatar
0 votes
0 answers
2k views

We are working on migrating Eclipse RCP project from Eclipse 4.6.3 to Eclipse 4.15. We have all the jars in plugins folder from Eclipse 4.15. When launch the code in Eclipse 4.15 product launches ...
8928132's user avatar
0 votes
1 answer
441 views

Linking in from Sort rows in JFace Treeviewer where I asked @greg-449 why my comparator doesn't work when (like the question on that page) I just wanted to sort by the label provider. My TreeViewer is ...
majixin's user avatar
  • 336
0 votes
2 answers
888 views

We are trying to migrate an existing Eclipse IDE Product from Java 8 to Java 11. Everything worked fine with our own code; but, unfortunately, the product also includes some (quite old) bundles from a ...
Stefan Winkler's user avatar
0 votes
0 answers
1k views

I am upgrading our Equinox from 4.7.3a to 4.21 in our server application. I have learned the hard way that org.eclipse.update.configurator no longer does automatically install bundles on application ...
wilx's user avatar
  • 18.3k
0 votes
1 answer
85 views

I'm updating the RCP application from the site, which contains the new version of the application (9.0.0.46). But "Check for Updates" returns "No updates were found". Example: ...
Volodymyr Patriiuk's user avatar
0 votes
0 answers
168 views

I develop an eclipse plugin at the moment and I want to create a custom error dialog. I have tried to extend the workbencherrorhandler, but no dialog occurs. Can someone help me and tell me how to ...
tobias's user avatar
  • 67
1 vote
1 answer
2k views

I have a server side OSGi application, running in an equinox container. This application uses the org.apache.felix.webconsole (4.6.2) and other bundles. These other bundles need javax.http > 4.0.0 ...
Benno Luthiger's user avatar
0 votes
0 answers
276 views

I am looking into updating an eclipse 3.7 application to use java 11. I have hit a problem on application launch. org.osgi.framework.BundleException: The bundle "org.eclipse.equinox.common_3.6.0....
E Ob's user avatar
  • 1
1 vote
0 answers
84 views

I want to run multiple OSGi http bundles bound to different ports. I am using Server-Side Equinox for this which uses jetty as the underlying engine for providing Servlet API support. If I want to run ...
Rahul Kumar Gond's user avatar
1 vote
1 answer
96 views

Is there any way we can log JVM start-up time in an RCP standalone app? I tried to launch the app and verify the jars loaded using Procmon in Windows but did not get much idea about the JVM start up ...
Siddharth Shankar's user avatar
0 votes
2 answers
387 views

I'm writing an Eclipse RCP application. I use the embedded Jetty server to handle Rest Services. It works fine. Now I want to add a WebSocket Connection. I didn't find any Jetty Websocket bundle in ...
Ckid's user avatar
  • 3
1 vote
0 answers
1k views

I'm trying to build a feature product using the latest Eclipse 2020-03 (4.15.0) version and hitting the error Unresolved requirement below. I have this same exact issue with Eclipse 2019-12 (4.14.0). ...
Zoomzoom's user avatar
  • 1,052
0 votes
2 answers
499 views

I have an Eclipse RCP application, whose .product file contains references to native SWT plugins. <plugins> <plugin id="org.eclipse.equinox.launcher.win32.win32.x86_64" fragment="...
JackPGreen's user avatar
  • 1,139
0 votes
0 answers
107 views

Good morning, I am trying to start ad RCP application. The "Contents" section of the product file show something is missing. The list shown clicking the "Add" button does not contain what misses (for ...
Roland Dyens's user avatar
1 vote
1 answer
236 views

I would like to create a command-line tool that starts an OSGi framework, in order to reuse code that is relying on OSGi. In the answer accessing command-line arguments from OSGi bundle, I got how I ...
Jmini's user avatar
  • 9,627

1
2 3 4 5
13