• Stars
    star
    1
  • Language
    C
  • Created about 10 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

More Repositories

1

ml-jupyter-notebook

GPU-enabled docker container with Jupyterlab for artificial intelligence
Jupyter Notebook
10
star
2

clade_prediction

Sequence generation/sequence to sequence learning using amino acid sequences of Corona virus (SARS-COV2) by training on generative adversial network (GAN)
Jupyter Notebook
4
star
3

BinaryTree

Operations on a Binary Tree
C
2
star
4

galaxy_tool_recommendation

Galaxy tool recommendation
Jupyter Notebook
2
star
5

GaussianProcessRegression

Gaussian Process Regression
MATLAB
2
star
6

similar_galaxy_tools

Finding similarity in Galaxy tools
Python
2
star
7

Rprop

Backpropagation algorithm used in Optimization (Machine Learning)
Python
2
star
8

similar_galaxy_workflow

Predict tools in Galaxy workflow (directed graph)
Jupyter Notebook
1
star
9

single_cell_analysis

Python
1
star
10

TeamSplit

Chef wants to split a team of new chef into two teams to play a game. In order to make the split, he first designates two team captains who take alternate turns selecting players for their teams. During each turn, the captain selects a single player for his team. Since each captain wants to make the strongest possible team, he will always select the best available player. The players have strengths as integer number, where higher strength indicate better players. After all the players have been selected, the team strength is computed as the sum of the strengths of the players on that team. For example, if strengths of 5 players are 5,7,8,4 and 2, then the first captain selects the player with strength 8 for his team, the second captain gets the player with strength 7, the first gets the one with strength 5, the second the one with strength 4, and the last one (strength 2) goes to the first team. The first team now has a total strength 8+5+2=15, and the second team has strength 7+4=11. Now Chef wants to find the absolute strength difference between the two teams. For the example above the answer is 4(=|15-11|). But Chef does not know exact strengths of each player. He knows some parameter a, b, c and d and a formula to find the strength of each player. The formula is S0 = d, Si = (a * Si-12 + b * Si-1 + c) mod 1000000, for i = 1 to N - 1 There are N players numbering 0 to N-1 and Si is the strength of player i. Input First line of the input contains an integer T, number of test cases to follow. Each test consist of single line containing five integers N, a, b, c and d. Output For each test case, you have to print a single line containing the absolute strength difference between the two teams. Constraints 1 ≀ T ≀ 50 1 ≀ N ≀ 3000000 0 ≀ a, b, c, d ≀ 100 Example Input: 4 1 1 1 1 1 2 1 1 1 1 3 1 2 3 4 4 2 3 4 1 Output: 1 2 763 74896
C#
1
star
11

DigitRecogniser_RandomForest

Digit Recognition using Random Forest Classifier
Python
1
star
12

predict_animal_behaviour

Predicting animal behaviour using deep learning (https://besjournals.onlinelibrary.wiley.com/doi/10.1111/2041-210X.12926)
Jupyter Notebook
1
star
13

gpu_jupyterlab_ct_image_segmentation

Jupyter Notebook
1
star
14

tool-resource-prediction

Tool Resource Prediction for Genomic Datasets
Python
1
star