Microsoft Q# Coding Contest - Summer 2020 - Warmup

Solutions are presented as using the least memory and the fastest execution time. It also takes the top 10 most recent solutions from each language. If you want to limit to a specific index, click the "Solved" button and go to that problem.

ContestId
Name
Phase
Frozen
Duration (Seconds)
Relative Time
Start Time
1356 Microsoft Q# Coding Contest - Summer 2020 - Warmup FINISHED False 259200 139845599 June 12, 2020, 4 p.m.

Problems

Solved$
Index
Name
Type
Tags
Community Tag
Rating
( 128 ) D2 Quantum Classification - 2 PROGRAMMING *special

B'This problem statement is exactly the same as in the problem "Quantum Classification - 1"; the only difference is the training dataset used (and the model you need to train on it). You are given a training dataset, in which each entry is a features vector (an array of 2 real numbers) and a label 0 or 1 indicating the class to which this vector belongs. Your goal is to use this dataset to train a quantum classification model that will accurately classify a validation dataset - a different dataset generated using the same data distribution as the training one. The error rate of classifying the validation dataset using your model (the percentage of incorrectly classified samples) should be less than 5 Your code will not be given any inputs. Instead, you should use the provided dataset file to train your model. The training dataset is represented as a JSON file and consists of two arrays, "Features" and "Labels". Each array has exactly 200 elements. Each element of the "Features" array is an array with 2 elements, each of them a floating-point number between -1 and 1. Each element of the "Labels" array is the label of the class to which the corresponding element of the "Features" array belongs, 0 or 1. Your code should return the description of the model you 'd like to use in the following format: Your code should have the following signature: Please refer to the documentation and examples for details on each parameter. Note that majority of the data analysis is going to happen "offline" before you submit the solution. The solution has to contain only the description of the trained model, not the training code itself - if you attempt to train the model "online" in your submitted code during the evaluation process, it will very likely time out. Training your model offline is likely to involve: '...

Tutorials

Microsoft Q# Coding Contest – Summer 2020 — Warmup: editorial

Submissions

Submission Id
Author(s)
Index
Submitted
Verdict
Language
Test Set
Tests Passed
Time taken (ms)
Memory Consumed (bytes)
Tags
Rating
83769068 kousikr26 D2 June 14, 2020, 5:03 p.m. OK Q# TESTS 1 327 6860800
83704489 eriksuenderhauf D2 June 13, 2020, 11:32 p.m. OK Q# TESTS 1 327 6860800
83872144 mees D2 June 15, 2020, 7:05 p.m. OK Q# TESTS 1 327 6963200
83825473 daman1209arora D2 June 15, 2020, 8:58 a.m. OK Q# TESTS 1 342 6860800
83791275 pankajkompella D2 June 15, 2020, 3:34 a.m. OK Q# TESTS 1 342 6860800
83767829 claretgrace0801 D2 June 14, 2020, 4:46 p.m. OK Q# TESTS 1 342 6860800
83761996 Acceleraizer D2 June 14, 2020, 3:35 p.m. OK Q# TESTS 1 342 6860800
83754634 tabr D2 June 14, 2020, 2:07 p.m. OK Q# TESTS 1 342 6860800
83570206 ali404 D2 June 13, 2020, 1:27 a.m. OK Q# TESTS 1 342 6860800
83829342 sensaur D2 June 15, 2020, 10:02 a.m. OK Q# TESTS 1 342 6963200

remove filters

Back to search problems