Questions tagged [sequential]

1) Any of various questions about a succession of elements arranged in a series, usually with numeric identifiers or numeric indexing; 2) Implementation questions about sequential neural networks.

Overview

  • Any of various questions about a succession of elements arranged in a series, usually with numeric identifiers or numeric indexing.

  • Implementation questions about sequential neural networks.

930 questions
4
votes
2 answers

Linking multiple python scripts to run one after another

I have three python scripts. One gathers data from database(data_for_report.py), another generates report from that data and creaters .xlsx file(report_gen.py) and the last one modifies the style of that excel file(excel_style.py). Now all three…
milka1117
  • 521
  • 4
  • 8
  • 17
4
votes
2 answers

Keras 2D Dense Layer for Output

I am playing with a model which should take a 8x8 chess board as input, encoded as a 224x224 grey image, and then output a 64x13 one-hot-encoded logistic regression = probabilities of pieces on the squares. Now, after the Convolutional layers I…
Theo H.
  • 141
  • 1
  • 3
  • 8
4
votes
3 answers

C# Libraries for timed actions

do you know of any C# libraries that allow you to sequence a series of actions, ie. each action executing when the previous has finished, or better yet, after a specific time interval has occurred. Thank you.
ocodo
  • 29,401
  • 18
  • 105
  • 117
4
votes
2 answers

Generated Sequential GUIDs are sometimes not sequential

I have a C# application that generates a Sequential GUID for each row that I insert into a table. I expect the inserted GUIDs to be sequential, but sometimes they break sequence (in chunks). Example: These GUIDs are shown in the order that they…
Kyle Williamson
  • 2,251
  • 6
  • 43
  • 75
4
votes
2 answers

Finding out of sequence records

Our company issues ticket books to our contractors, and we track both the books, and the individual tickets inside the books (25 per book), to ensure nothing goes missing. Our books are numbers and so are the individual tickets within the book. The…
Chase Ernst
  • 1,147
  • 1
  • 21
  • 53
4
votes
2 answers

Adding sequential numbers to the end of file names - Shell Script

I am trying to add sequential four digit numbers to the end of file names during a rename script. The problem I am running into is that it only pads the first file and the numbers added are not sequential. Here is my script so far: Starting file…
VanCityGuy
  • 117
  • 1
  • 7
4
votes
1 answer

How to understand Quiescent Consistency?

I am reading 'The Art of Multiprocessor Programming'. Now, i get stuck at third chapter , because do not understand the notion of Quiescent Consistency.Can you give me a example to expain what is Quiescent Consistency?Please as clearly as possible!
Summer
  • 209
  • 2
  • 9
4
votes
2 answers

How to write an R function that displays plots sequentially?

I want something similar to the 'plot.lm' functionality. y <- rnorm(100, 0, 1) x <- rnorm(100, 0, 1.5) mod <- lm(y ~ x) plot(mod) Hit to see next plot: Hit to see next plot: Hit to see next plot: Hit to see…
Frank P.
  • 503
  • 5
  • 21
4
votes
1 answer

How to test a project with multiple python versions in a sequential way?

I am developing a python adapter to interact with a 3rd party website, without any json or xml api (http://www.class.noaa.gov/). I have a problem when Travis CI run multiple python tests (of the The Travis CI Build Matrix) concurrently. The project…
ecolell
  • 125
  • 3
  • 9
4
votes
2 answers

Does the ReSharper unit test runner run tests sequentially or in parallel with MbUnit?

Does the ReSharper unit test runner run tests sequentially or in parallel (and then, is each test in a separate thread)? I am using MBUnit test framework.
Kostas
  • 303
  • 1
  • 3
  • 6
4
votes
1 answer

VHDL Quadrature Decoder: Sequential/Combinatorial Logic

I'm implementing a quadrature decoder in VHDL and came up with two solutions. In method 1, all of the logic is placed within one process that is sensitive to clock and reset. On a Spartan-3A, this uses four slices, seven FFs and four input…
seir
  • 43
  • 3
4
votes
3 answers

How to create URL-able unique id that is as short as possible?

For my domain, I'm trying to develop an ID generator that creates a unique ID, which can then be used for a shortlink (just as a URL shortener does). I thought about using md5() or uniqueid() to create that ID. But to keep URLs as short as possible,…
Gottlieb Notschnabel
  • 9,408
  • 18
  • 74
  • 116
4
votes
3 answers

Reduce array of month names by creating hyphenated expressions from consecutive months

I have an array like: Array ( [0] => Jan [1] => Feb [2] => Mar [3] => Apr [4] => May [5] => Jun [6] => Sep [7] => Oct [8] => Dec ) I need to convert it to Array ( [0] => "Jan - Jun" [1] => "Sep - Oct" …
Bluemagica
  • 5,000
  • 12
  • 47
  • 73
4
votes
3 answers

How to make sequentially Rest webservices calls with AngularJS?

I would like to know how we can make sequential webservices call with AngularJS? To simplify, when we got the result of the first webservices we call the second one. I already found a solution but I don't really like it. I think there must be a…
M07
  • 1,060
  • 1
  • 14
  • 23
4
votes
1 answer

NUnit Sequential Attribute with arrays in Values

How I can pass string[][] arrays to ValuesAttribute? I have: public string[][] Array1 = new[] {new[] {"test1", "test2"}}; //... [Test, Sequential] public void SomeTest( [Values("val1", "val2", "val3")] string param1, [Values(Array1, Array2,…
Vladimirs
  • 8,232
  • 4
  • 43
  • 79