@misc{speechbrainV1,
title={Open-Source Conversational AI with {SpeechBrain} 1.0},
author={Mirco Ravanelli et al.},
year={2024},
eprint={2407.00463},
url={https://arxiv.org/abs/2407.00463},
}
Gao, L. , Madaan, A., Zhou, S., Alon, U., Liu, P., Yang, Y., Callan, J., Neubig, G. (2022). Program-aided Language Models. arXiv:2211.10435.✅
Wei, J. , Wang, X., Schuurmans, D., Bosma, M., Chi, E., Le, Q., Zhou, D. (2022). Chain of Thought Prompting Elicits Reasoning in Large Language Models. arXiv:2201.11903.✅
Madaan, A. , Zhou, S., Alon, U., Yang, Y., Neubig, G. (2022). Language Models of Code are Few-Shot Commonsense Learners. arXiv:2210.07128.✅
Chen, M. et al. (2021). Evaluating Large Language Models Trained on Code. arXiv:2107.03374.✅
Hendrycks, D. , Burns, C., Kadavath, S., Arora, A., Basart, S., Tang, E., Song, D., Steinhardt, J. (2021). Measuring Mathematical Problem Solving with the MATH Dataset. arXiv:2106.14858.✅
question = "Today is 27 February 2023. I was born exactly 25 years ago. What is the date I was born in MM/DD/YYYY?"
DATE_UNDERSTANDING_PROMPT = """
# Q. 2015 is coming in 36 hours. What is the date one week from today in MM/DD/YYYY?✅
# If 2015 is coming in 36 hours, then today is 36 hours before.
# ...
# Q. {question}✅
""".strip() + '\n'
# If today is 27 February 2023 and I was born exactly 25 years ago, then I was born 25 years before.
today = datetime(2023, 2, 27)
# I was born 25 years before,
born = today - relativedelta(years=25)
# The answer formatted with %m/%d/%Y is
born.strftime('%m/%d/%Y')