Recent content by Superposed_Cat

  1. Superposed_Cat

    Neural Networks Question about the Hebbs and Delta Rule

    The activation is the output of each node, it is a function of the weights, activation for ni,j = f(∑wk ⋅ ni-1,k) , where f(x) is the activation function, eg relu, sigmoid, tanh, elu, gelu, softmax, parametric relu.
  2. Superposed_Cat

    Debugging a Backprop Neural Network: Issues & Solutions

    I am trying for the first time in 5 years, to make a n- layer, m-width backprop neural network from scratch, My issue is, I've tried training it on XOR, where it returns 0.48 for any of the inputs instead of 1 for half of them and 0 for the other half, if you give it a dataset where the outputs...
  3. Superposed_Cat

    I Conservation of Energy in GR: A-B System Analysis

    You're right, it wasn't well defined, I meant the second case, I guess my more accurate question was whether everything was conserved in GR when kinetic energy was changed to gravitational potential, as with electric potential, elastic tension, and all the other ways to store it, there was a...
  4. Superposed_Cat

    I Conservation of Energy in GR: A-B System Analysis

    Assume you have a two particle system, A, which has a mass and gravitational pull of g, and B, an object with low mass, The system starts at time 0 with the distance between A and B being 0, A being at rest and B having enough kinetic energy to move it a distance r away from A, until time t all...
  5. Superposed_Cat

    I Can x be found for ax^b - x^(b-2) = c in the general form?

    I have an long equation I managed to simplify to that form, but now I haven't the foggiest on how to solve for x, any help appreciated
  6. Superposed_Cat

    I Pair production via Quantum Tunneling has negative Kinetic energy?

    If we have a photon being converted to a positron-electron pair, but we lack enough energy for this to happen (hv<2Me*c^2) but the difference is smaller than the uncertainty amount, such that tunneling may be possible, would the resultant pair have net negative energy? Would tunneling even be...
  7. Superposed_Cat

    I Chance of x Red balls sharing a bucket with a Green ball

    If I have 237 buckets, and there are n green balls distributed randomly over those buckets, and I put 34 new red balls randomly in those 237 buckets, what is the formula for the probability that x green balls share a bucket with a red ball? Any help appreciated.
  8. Superposed_Cat

    Overlay on a flexbox while keeping responsivness

    With the below code, I am trying to make an overlay for a "progress bar" with text, I need the flex to make it responsive, BUT the only way I know to make an overlay is to use things like fixed or absolute position, which breaks the layout, is there a way to keep it responsive and have an...
  9. Superposed_Cat

    Image Compression you can implement in a day

    I need to implement a decent image compression algorithm in a day or two, without using libraries. So it can't be anything with multiple layers, like jpeg. I was thinking huffman encoding, Which would be a good algorithm I can learn to implement in a day or two that is not terrible at it's job.
  10. Superposed_Cat

    C/C++ Kill all parents child threads from a child thread in C++

    I have a C++ program that starts two threads from the parent thread, I need to kill both children from a child thread. ____> b | a - |_____> c I need to kill b & c from b. Issue is, I can't use simple flags, as c waits for input using cin. Any help appreciated.
  11. Superposed_Cat

    How can C4 be detonated by heat or shock, only by electricity?

    I was thinking about electroactive polymers, and wondering if any exist that are immune to high temperatures, and although explosive decomposition is a completely different subject, it got me thinking about c4. Chemically speaking, what gives a compound such as c4 the ability to not detonate...
  12. Superposed_Cat

    Monitoring calls from Z.exe to foo() in Y.sys, a driver

    I did not write it myself, it came with the device, I seek to mod a specific function in the driver,
  13. Superposed_Cat

    Monitoring calls from Z.exe to foo() in Y.sys, a driver

    Say I write a driver for my usb device X containing a function foo(), and save it in c:/windows/system32/Y.sys, now i have a program Z.exe that I start up, it accesses X via Y.sys and calls foo(), how can I attack to Z.exe and look for any api calls to mydriver.sys specifically and return the...
  14. Superposed_Cat

    Is There an Error in My Q Deep Learning Algorithm? Need Help Troubleshooting!

    [mentor note: code blocks added for readability and syntax hilighting] Hey all, been trying to implement a Q deep learning algorithm, having an issue though, its not working, after 100 000 game plays and using 1000 iterations to train each step (although i have tried lower numbers for both)...
Back
Top