Turning out data tricks since 2006!

Results 37 comments of Turning out data tricks since 2006!

alternatively, you can run th neural_style.lua as sudo

I wrote my own evwma macd strategy. So it wouldn't be too difficult to do an ema. Either way I look forward to your ema method

here's a link to the code for my evwma strategy https://github.com/thistleknot/Python-Stock/blob/master/evwma.py

https://github.com/dswah/pyGAM/issues/291

after installing bc and openssl-devel I finally got it started on compiling for more than 30 seconds and I got the same error LDT_BASE_ADDR I applied the suggested fix and...

so I added to the top of mmu_context.h ``` #define LDT_BASE_ADDR (LDT_PGD_ENTRY orig_ax, 0)) extern int fixup_exception(struct pt_regs *regs); ```

I edited the definition ./arch/x86/include/asm/extable.h extern int fixup_exception(struct pt_regs *regs); now I got ``` arch/x86/kernel/cpu/mce/core.c:1322:8: error: too many arguments to function ‘fixup_exception’ if (!fixup_exception(regs, X86_TRAP_MC, error_code, 0)) ^~~~~~~~~~~~~~~ In file...

I may have found a solution 5.1 seems to compile with less errors (had to follow this guide to comment out a few of the lines in .config asking for...

I made traps.c look like v 5.1 when it threw conflicts about that fixup_exception then next error had to add to mmu_context.h #define LDT_END_ADDR (LDT_BASE_ADDR + PMD_SIZE) then I got...