Write a function find Word Frequencies that takes in a sentence (string), and returns an object with each word as a key, with a value of how many times that word appears in the sentence. code example
Example: calculate term frequency python
from collections import Counter
# Counter token frequency from a sentence
sentence = "Texas A&M University is located in Texas"
term_frequencies = Counter(sentence.split())