How to create an APIFunction that takes a list with constraints on the list elements?
How to setup FrameTicks for TradingChart
What are the software requirements to train neural networks on GPU?
How to create an APIFunction that takes a list with constraints on the list elements?
This APIFunction takes a list as an argument: func = APIFunction[{"x" -> DelimitedSequence["Integer", ","]}, #x^3 &] func["x" -> Range[4]] What I'd like to be able to do is place a ...
- asked by Mike Honeychurch 4votes How to setup FrameTicks for TradingChart https://mathematica.stackexchange.com/questions/143705/how-to-setup-frameticks-for-tradingchart
I'm trying to setup FrameTicks for TradingChart, but it dosn't work. (*take data*) data = FinancialData["NASDAQ:AAPL", "OHLCV", {{2017, 1, 1}, {2017, 4, 16}}]; (*def. of ticks*) maxh = ...
- asked by Jerry 3votes What are the software requirements to train neural networks on GPU?
It seems that GPU training in Mathematica has some additional requirements on the software. For example, when I run this example on a Linux system, I get the following errors trainingData = ...
- asked by xslittlegrass 8votes —