Skip to main content
Filter by
Sorted by
Tagged with
0 votes
3 answers
90 views

I have a weekly scorecard that our leadership is going to fill out. Its all on one tab and has 500+ rows of the same scorecard that runs with the same statistics. I took a screen grab of one section. ...
Regan's user avatar
  • 1
0 votes
1 answer
148 views

The way Python iterates through a range in a for loop is given the range from (0 to n) it will do the operations first for 0, then for 1, 2... until it finishes in n, completing the for loop. Am I ...
greenrabbit's user avatar
0 votes
0 answers
102 views

I have two collections called 'store' and 'items' , where store keep all product records belongs to the supermarket with timestamp. And 'items' keeps records of some details about purchases. Store ...
Malith Ileperuma's user avatar
-1 votes
1 answer
52 views

Trying page.İt's working.And downloading excel(xlsx) file.But some code,calling another php file in tableCreate.php=>class TableCreate => function Excele_Aktar() .İt's not working.And return ...
Emrah Çalışkan's user avatar
0 votes
2 answers
778 views

I want to create a data set where I only want to keep 5 specific dates. So my &date is 31mar2020 and &enddate is 31mar2025 and I only want to keep 31mar every year until 2025. With my code ...
Mikael Holmkvist's user avatar
3 votes
2 answers
120 views

I am looking for an example which shows that XQuery expression evaluation is not sequential. It is always mentioned when comparing the functional nature of XQuery with procedural languages. E.g. in ...
TFuto's user avatar
  • 1,462
3 votes
1 answer
433 views

I have a sequential Verilog code whereby at each increment of i, a different thing must happen. For some of the i, there are no timing errors. However, for different values of i, I am getting ...
Lerbi's user avatar
  • 225
5 votes
2 answers
4k views

see thread title: Is "readers-writers problem" just "producer–consumers problem" with multiple consumers? Intuitively I would say no, but I have no way to explain it and also could see this question ...
user1994928's user avatar
2 votes
1 answer
2k views

My dataset has multiple features containing both sequential data and non sequential data. How can I concatenate or use them together in a model to work it out with all the features rather than just ...
Daksh M.'s user avatar
  • 4,809
3 votes
2 answers
6k views

I am new to DL and Keras. Currently I try to implement a Unet-like CNN and now I want to include batch normalization layers into my non-sequential model but do not really now how. That is my current ...
Midas.Inc's user avatar
  • 1,840
0 votes
3 answers
773 views

I was trying to sort two arrays with non sequential numbers into one array after I did with sequential numbers. Do I need to order the arrays separately or is there a more effective way? If I run the ...
Jones's user avatar
  • 13
1 vote
1 answer
1k views

I want to create a siamese model, defined lower for colloborative filtration. First one creates users' embeddings, second one creates items' embeddings. import keras from keras import backend as K ...
Vladimir's user avatar
  • 101
3 votes
1 answer
1k views

I've read in a couple of online articles pertaining to the performance of using UUID's as primary keys in MySQL - and a common theme, whether they are for-or-against is the idea that non-sequential ...
AlanSTACK's user avatar
  • 6,165
0 votes
2 answers
371 views

This is probably a simple question, but I'm struggling finding a way to do the equivalent of "for (i in 1:10){ do something}" but with a list of strings. For example: given a list of strings a = ("...
chaseking123's user avatar
0 votes
1 answer
936 views

I would like to be able to execute a do loop for a non-sequential set of values. The way I have written this code runs a new data step for each value - so therefore the end product is a data table ...
green2010's user avatar
0 votes
3 answers
107 views

Usually when I search a file with grep, the search is done sequentially. Is it possible to perform a non-sequential search or a parallel search? Or for example, a search between line l1 and line l2 ...
Zeus's user avatar
  • 1,575
0 votes
2 answers
110 views

I have the following code - it produces a series of queries that are sent to a database: $a = 'q'; $aa = 1; $r = "$a$aa"; $q = 54; while($aa <= $q){ $query .= "SELECT COUNT(". $r .") as ...
Homer_J's user avatar
  • 3,323
-1 votes
1 answer
1k views

I'm sure this has been asked before, but I couldn't figure out the right search terms to get the answer I was seeking, so apologies... I have one worksheet with regular but non-sequential data (i.e. ...
Brandon's user avatar
  • 101
0 votes
2 answers
200 views

Scenario: I have to transfer approx 3000 files, 30 to 35 MB each from one server to another (Both servers are IBM-AIX servers). These files are in .gz format. They are unzipped at the destination ...
user3186082's user avatar
1 vote
1 answer
2k views

I am a newbie to function writing in Excel and really need help urgently.I need to assign serial numbers with uneven increments. For Example I have a column B that contains some names of customers in ...
MissExcel's user avatar
2 votes
2 answers
2k views

I need to generate unique non-sequential alphanumeric string of exactly length 6 (not less, not more). With non-sequential I mean it should look visually random at first sight and not coming from a ...
user968698's user avatar
1 vote
1 answer
967 views

I ask this because I'm currently learning about Neural Networks as a subset of the machine learning algorithms Just trying to get some intuition on what sort of problems out there are categorized as "...
Chuck Testa's user avatar
  • 6,507
1 vote
2 answers
310 views

I have heard that neural networks are very good when implementing solutions to sequential-decision tasks. However, I assume that the qualifier "sequential" exists because there must likewise be a "non-...
Chuck Testa's user avatar
  • 6,507
1 vote
2 answers
451 views

I have two dictionary objects, connections and network. This can be visualized as a graph, where each node is a computer and connections depict an edge between the computers and node. Network is a ...
Abhijit's user avatar
  • 64k
3 votes
3 answers
889 views

I'm trying to grab a random row from a table where the data doesn't change. I've read that people try ORDER BY RAND() which is terrible for large datasets and doesn't scale well. I've also seen the ...
creamcheese's user avatar
  • 2,544
4 votes
4 answers
714 views

There are some task that should't be done in parallel, (for example opening a file, reading, writing, and closing, there is an order on that...) But... Some task are more like a shoping list, I mean ...
Hernán Eche's user avatar
  • 6,950
1 vote
1 answer
824 views

If a Powerpoint presentation is not currently displayed - how can I display (for example) slide 7 of 10 on the secondary monitor, using vbscript?
hawkeye's user avatar
  • 36k