sanity
|
Registered User
|
I'm an entrepreneur and computer scientist, with a particular interest in Artificial Intelligence and Peer-to-Peer. My two most notable projects are Freenet and Revver (I'm founder and co-founder respectively). My current projects are a predictive analytics system called SenseArray, and a new approach to distributed computation called Swarm. You can find my personal blog here. While I've used C, C++, ML, Haskell, Prolog, Python, even Perl in the past, these days I do most of my programming in Java. I am gaining experience with Scala though and expect to become my primary language as it and its tools mature. I was honored to be asked by Scala's creator to be on the program committee for the first Scala workshop. |
|
Nov 27 |
comment |
Can I write to the Beanshell console from Java? How do I get the console that I'm exposing on telnet, given the code I added to my question? |
|
Nov 26 |
comment |
Can I write to the Beanshell console from Java? I tried console.print() per your suggestion, but this seems to send output to System.out of my application, not the console :-/ |
|
Nov 26 |
revised |
Can I write to the Beanshell console from Java? elaborate some more |
|
Nov 25 |
awarded | ● Famous Question |
|
Nov 19 |
accepted | How do I find out what jar files are actually used when compiling a java project. |
|
Nov 19 |
revised |
How do I find out what jar files are actually used when compiling a java project. address runtime dependencies |
|
Nov 19 |
comment |
How do I find out what jar files are actually used when compiling a java project. It will tell you which containers your application does depend on, the rest are the useless ones. |
|
Nov 19 |
answered | How do I find out what jar files are actually used when compiling a java project. |
|
Nov 19 |
comment |
To use or not to use Scala for new Java projects ? Daniel, I found a crash while parsing JSON that would have been picked up by even the most rudimentary of unit tests. I do consider that a significant bug in a standard library. |
|
Nov 19 |
asked | Can I write to the Beanshell console from Java? |
|
Nov 14 |
comment |
Trying to make sierpinski triangle generator in a functional programming style So what is your question? |
|
Nov 14 |
answered | To use or not to use Scala for new Java projects ? |
|
Nov 14 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Dirk, fyi it turned out that this is possible - I answered my own question with a link to the source - see below |
|
Nov 14 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Chip, you are correct - the implementation of CurveFit should take a parameter, the degree of the curve. I didn't do it here because in Java interfaces don't have constructors. |
|
Nov 14 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Ok, I can see how that could have been misinterpreted. I meant fit thousands of curves, each to a separate dataset. |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Two lines are not a curve. |
|
Nov 13 |
answered | Is it possible to do an algebraic curve fit with just a single pass of the sample data? |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Several issues: given the degree of noise in my data, 1000 points is unlikely to be sufficient to find the underlying curve, really I need to use all available data, which may be tens of millions of points. Further, even if 1000 points was sufficient, this is too much state to maintain per-curve in this particular application (since I need to fit potentially hundreds of thousands of curves simultaneously). |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Yes, I am limiting the number of polynomial coefficients, because I'm trying to find an underlying pattern in data that contains a lot of noise. I've clarified the question accordingly. Also note that using matrices may require more than one pass through the data, and if so, it isn't applicable to my problem. |
|
Nov 13 |
revised |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? clarify that degree of polynomial will be constrained; deleted 2 characters in body |
|
Nov 13 |
revised |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? add "edit" section |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Dirk, there must be some way to do it, even if its a sub-optimal fit. |
|
Nov 13 |
revised |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? added 84 characters in body |
|
Nov 13 |
revised |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? add some code to further clarify what is needed; added 39 characters in body |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? And you can confirm that this requires only a single pass through the data? |
|
Nov 13 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Unfortunately I need a better fit than a simple straight line, but if you could generalize this to more flexible curves that would be exactly what I need. |
|
Nov 11 |
comment |
Is it possible to do an algebraic curve fit with just a single pass of the sample data? Can you provide a pointer as to how to do this with more than 1 independent variable? Specifically open source Java code would be useful, but other languages are fine too. |
|
Nov 11 |
asked | Is it possible to do an algebraic curve fit with just a single pass of the sample data? |
|
Nov 11 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? Ah, so if I have a way to determine alpha and beta, c is just the sum of the two? |
|
Nov 10 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? Out of curiosity, would it be preferable to determine alpha and beta for the beta distribution by fitting a beta distribution to observed probabilities of the other coins in the box? If so, how do I use the alpha and beta values to get my estimate? |
|
Nov 10 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? I just made up the values, so that explains it. I'll do some more experimentation - thanks! |
|
Nov 10 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? "Unfortunately you can't do machine learning without knowing some basic math" - to be fair, I never said I didn't know basic math - I said that math was not one of my strengths. |
|
Nov 9 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? Also, def j1(h : Int, n : Int, p : Double, v : Double) = (h + p * p * (1 - p) / v - p) / (n + p * (1 - p) / v - 1) - and j1(5, 10, 0.1, 0.2) = 0.5232804232804233 - why would this be above 0.5? |
|
Nov 9 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? I'm getting negative values for c in a simple test. I define the function (in Scala) as def c(p : Double, s : Double) = p * (1-p) / (s*s)-1. But, c(0.001, 0.1) = -0.9001 |
|
Nov 8 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? Response to response to comment: I understand that you're never going to get an accurate probability with a small number of trials - I'm just trying to improve upon the accuracy of h/n using the additional information I do have. |
|
Nov 8 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? I guess my hope would be to avoid having to choose a value for c (presumably it would depend on s). |
|
Nov 8 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? As I said, "(If other summary properties of the probabilities of other coins aside from their mean and stddev would be useful, I can probably get them too.)" - so if it would be useful to know this, it is available. Typical values for n could range from 5-500. Typical probabilities will be close to 0 - perhaps 0.01 or even 0.001. One can assume they follow a bell curve. |
|
Nov 8 |
comment |
How do I efficiently estimate a probability based on a small amount of evidence? I'm only looking for the best estimate I can get given the available information, something better than h/n. |
|
Nov 8 |
asked | How do I efficiently estimate a probability based on a small amount of evidence? |
|
Nov 5 |
comment |
LRU LinkedHashMap that limits size based on available memory I would like to use MapMaker (I make extensive use of Google Collections in my code), but is there any way to make it behave like an LRU cache which scales according to available memory? Additionally, is there any way to "lock" it so that it will no-longer delete entries in response to garbage collection? |
|
Oct 29 |
comment |
LRU LinkedHashMap that limits size based on available memory For locking, I was thinking I could simply copy the whole thing into a normal HashMap |
|
Oct 29 |
comment |
LRU LinkedHashMap that limits size based on available memory jprete, I've tried to clarify this - you are right, its a cache |
|
Oct 29 |
revised |
LRU LinkedHashMap that limits size based on available memory added 91 characters in body |
|
Oct 29 |
asked | LRU LinkedHashMap that limits size based on available memory |
|
Oct 26 |
awarded | ● Popular Question |
|
Oct 15 |
asked | Advice for embedding a Java scripting language for debugging/remote admin |
|
Oct 14 |
awarded | ● Notable Question |
|
Oct 13 |
accepted | Is there a fast language that supports portable continuations? |
|
Oct 13 |
answered | Is there a fast language that supports portable continuations? |
|
Oct 13 |
revised |
What is Java’s lightest weight non-concurrent implementation of Iterable? Clarification |
