Created
December 28, 2020 21:48
-
-
Save drozzy/da63249cc2ee5c8cebf369ebd1b6f5da to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
c = random.choice | |
areas = ["rl", "transfer learning", "attention", "distillation", "unsupervised learning", 'multi-task learning'] | |
architectures = ["transformers", "RNNs", "CNNs", "ResNETs", "NeuralODEs", "Autoencoders", "GANs"] | |
applications = ["Games", "NLP", "Driving", "Art", "Robotics", "Health"] | |
datatypes = ["images", "video", "audio", "text", "DNA"] | |
action = ["Advancing", "Discovering", "Examining", "Learning", "Automating"] | |
area, architecture, applicaiton, datatype, action = c(areas), c(architectures), c(applications), c(datatypes), c(action) | |
print(f"{action} {applicaiton} using {datatype} with {area} and {architecture}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment